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