blob: d44feeb47683b6c7c0639c31876b07567fba8fe6 [file] [log] [blame]
public class Test {
void m() throws Exception {
try (AutoCloseable r1 = null; AutoCloseable r2 = r1) {
System.out.println(r1 + ", " + r2);
}
}
}