mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-02 05:50:53 +07:00
8 lines
236 B
Java
8 lines
236 B
Java
// "Generate overloaded method with default parameter values" "true"
|
|
abstract class Test {
|
|
int foo(boolean... args) {
|
|
return foo(<selection>0<caret></selection>, args);
|
|
}
|
|
|
|
abstract int foo(int ii, boolean... args);
|
|
} |