mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-14 22:41:58 +07:00
7 lines
144 B
Plaintext
7 lines
144 B
Plaintext
class Test {
|
|
void m() throws Exception {
|
|
try (AutoCloseable r2 = null) {
|
|
System.out.println(null + ", " + r2);
|
|
}
|
|
}
|
|
} |