Files
openide/java/java-tests/testData/refactoring/changeSignature/KeepTryWithResources_after.java

14 lines
256 B
Java

class Scratch {
static class C implements AutoCloseable {
public void close() {}
}
public static void main(String[] args) throws Exception {
try (C c = new C()) {
foo();
}
}
static void foo() { }
}