Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/castMethodParameters/before4.java
Anna Kozlova f803857dc1 [java] add cast fix when multiple arguments require fix simultaneously (IDEA-271993)
GitOrigin-RevId: 2f6dc7ed7341c851b56a80a9b6404678ac0da0b9
2021-06-22 19:26:14 +00:00

15 lines
318 B
Java

// "Cast 1st parameter 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(<caret>0, 0);
}
}