Files
openide/java/java-tests/testData/inspection/quickFix/SameParameterValue/before5.java
T
2009-09-25 20:58:23 +04:00

10 lines
162 B
Java

// "f 5" "true"
public class Test {
void foo(int <caret>f){
if (f == 5) {
Syste.out.print(f);
}
}
void bar(){foo(5);}
void bar1(){foo(5);}
}