Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/castMethodParameters/before5.java
2010-06-25 12:46:40 +04:00

15 lines
274 B
Java

// "Cast 1st parameter to 'double'" "true"
class a {
void test() {}
void test(int i) {}
void test(String s) {}
void test(Object o) {}
void test(int i,double d) {}
void test(double d,int i) {}
void f() {
test(<caret>0, 0);
}
}