blob: 2beda84757783d6c7b9bf3779e1dabed90eb3f53 [file] [log] [blame]
class C {
void m() throws Exception {
try (AutoCloseable r1 = null) {
try (AutoCloseable <caret>r2 = r1) {
System.out.println(r1 + ", " + r2);
}
}
}
}