blob: 32a83f9f28dc1cbc2c8fc89778cd98839f0bd676 [file] [log] [blame]
class DataFlowBug {
public void add2() {
try {
throw null;
} catch (Throwable e) {
if (e instanceof NullPointerException) {
return;
}
}
}
}