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

15 lines
319 B
Java

// "Cast 1st parameter to 'char'" "false"
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) {}
private void test(int c, char f) {}
void f() {
test(<caret>0, 0);
}
}