Files

17 lines
332 B
Java

// "Add exception to existing catch clause" "false"
import java.io.FileInputStream;
class Test {
void m() {
try {
new Runnable() {
@Override
public void run() { }
InputStream in = new <caret>FileInputStream("");
};
} catch (RuntimeException e) {
e.printStackTrace();
}
}
}