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

15 lines
270 B
Java

// "Cast argument to 'a'" "true"
class a {
void test() {}
void test(int i) {}
void test(String s) {}
void test(a o) {}
void test(int i,double d) {}
void test(double d,int i) {}
void f(Runnable r) {
test(<caret>(a) r);
}
}