blob: d08fbacdaad289a27a6976a06031de9fb343f932 [file] [log] [blame]
import java.io.*;
public class Foo {
public void foo() {
try {
throw new EOFException("aaa");
} catch (Exception e) {
if (e == null) {
System.out.println("Can't be here.");
}
if (e instanceof FileNotFoundException) {
System.out.println("Can't be here.");
}
}
}
}