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

14 lines
277 B
Java

// "Cast parameter to 'int'" "true"
class a {
private void test() {}
private void test(int i) {}
private void test(String s) {}
private void test(Object o) {}
private void test(char c,char f) {}
void f() {
test(<caret>(int) 2.2);
}
}