mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
7 lines
184 B
Java
7 lines
184 B
Java
class C {
|
|
void m() throws Exception {
|
|
try (AutoCloseable r1 = null; AutoCloseable r3 = null) {
|
|
System.out.println(r1 + ", " + r1 + ", " + r3);
|
|
}
|
|
}
|
|
} |