blob: a032ae65d80c0a3428ea9c6e68a4928283f26f11 [file] [log] [blame]
// "Make 'e' not final" "false"
class C {
static {
try {
throw new Exception();
}
catch (RuntimeException | IOException e) {
<caret>e = null;
}
}
}