mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 18:50:59 +07:00
17 lines
345 B
Java
17 lines
345 B
Java
// "Add exception to existing catch clause" "false"
|
|
import java.io.FileInputStream;
|
|
|
|
class Test {
|
|
void m() {
|
|
try {
|
|
class A implements Runnable {
|
|
@Override
|
|
public void run() { }
|
|
|
|
InputStream in = new <caret>FileInputStream("");
|
|
};
|
|
} catch (RuntimeException e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
} |