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