Files
openide/java/java-tests/testData/inspection/dataFlow/fixture/ThrowNull.java
T

13 lines
183 B
Java

class DataFlowBug {
public void add2() {
try {
throw null;
} catch (Throwable e) {
if (e instanceof NullPointerException) {
return;
}
}
}
}