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