mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-02 05:50:53 +07:00
16 lines
269 B
Java
16 lines
269 B
Java
// "Make 'e' final" "false"
|
|
|
|
class C {
|
|
static {
|
|
try {
|
|
throw new Exception();
|
|
}
|
|
catch (RuntimeException | IOException e) {
|
|
new Runnable() {
|
|
public void run() {
|
|
System.out.println(<caret>e);
|
|
}
|
|
}.run();
|
|
}
|
|
}
|
|
} |