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

14 lines
278 B
Java

// "Cast 2nd 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) {}
void f() {
test(<caret>'d', 0);
}
}