Files
openide/java/java-tests/testData/refactoring/inlineLocal/ResourceVariable.java.after
T

7 lines
144 B
Plaintext

class Test {
void m() throws Exception {
try (AutoCloseable r2 = null) {
System.out.println(null + ", " + r2);
}
}
}