mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-29 12:57:33 +07:00
4c7609bdd7
GitOrigin-RevId: e7df218ea71800e71409de20474f43eb758e41de
10 lines
236 B
Java
10 lines
236 B
Java
// "Generate overloaded method with default parameter values" "true"
|
|
class Test {
|
|
int foo(boolean... args) {
|
|
return foo(<selection>0<caret></selection>, args);
|
|
}
|
|
|
|
int foo(int ii, boolean... args){
|
|
return 1;
|
|
}
|
|
} |