mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 15:20:54 +07:00
13 lines
226 B
Java
13 lines
226 B
Java
// "Generate overloaded method with default parameter values" "true"
|
|
class Test {
|
|
int foo() {
|
|
return foo(0);
|
|
}
|
|
|
|
int foo(int ii){
|
|
//comment1
|
|
System.out.println("");
|
|
//comment2
|
|
return 1;
|
|
}
|
|
} |