Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/castMethodParameters/after8.java
2010-06-25 12:46:40 +04:00

11 lines
217 B
Java

// "Cast 2nd parameter to 'java.lang.Throwable'" "true"
class a {
void f(Throwable a, Throwable b) {}
void g() {
Exception e=null;
Object o = null;
f(<caret>e, (Throwable) o);
}
}