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

14 lines
280 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 f<caret>oo() throws Exception { }
}