mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
ensure that psi remain correct, automatically resolve conflict with variables declared after the try-with-resources stmt
8 lines
170 B
Java
8 lines
170 B
Java
class ARM {
|
|
void f() {
|
|
System.out.println("before");
|
|
try (AutoCloseable <caret>r = null) {
|
|
System.out.println("inside");
|
|
}
|
|
}
|
|
} |