Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/castMethodParameters/after4.java
Bas Leijdekkers 44f751215e java: cast quick-fix cosmetics (IDEA-277682)
GitOrigin-RevId: 2e9ca6999d9003e1d0d7392de6713593722238f2
2021-09-09 23:02:59 +00:00

15 lines
317 B
Java

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