mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 03:20:56 +07:00
ensure that psi remain correct, automatically resolve conflict with variables declared after the try-with-resources stmt
7 lines
140 B
Plaintext
7 lines
140 B
Plaintext
class Test {
|
|
void m() throws Exception {
|
|
try (AutoCloseable r2 = null) {
|
|
System.out.println(null + ", " + r2);
|
|
}
|
|
}
|
|
} |