blob: 1bee6da0d391cb62f5ccf11c9ef8c93b01f081e1 [file] [log] [blame]
// "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();
}
}
}