blob: 04c4cdd30653a59fb8f63cf6182bab29b8c6944e [file] [log] [blame]
// "Make 'r' final" "false"
class C {
void m() throws Exception {
try (AutoCloseable r = null) {
new Runnable() {
public void run() {
System.out.println(<caret>r);
}
}.run();
}
}
}