blob: db06692eb775b01063b95bc3324fb7b1e8125575 [file] [log] [blame]
class Test {
void m() throws Exception {
try (AutoCloseable inl<caret>ineMe = null) {
try (AutoCloseable r2 = inlineMe) {
System.out.println(inlineMe + ", " + r2);
}
}
}
}