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

11 lines
198 B
Java

// "Cast 1st argument to 'Throwable'" "true"
class a {
void f(Throwable a, Throwable b) {}
void g() {
Exception e=null;
Object o = null;
f((Throwable) e,o);
}
}