mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +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();
|
|
}
|
|
}
|
|
} |