blob: 76c72d6ff754bfdc62b9cab4813f0c8fee6fabf5 [file] [log] [blame]
// "Add Exception to Method Signature" "true"
class C {
static class E1 extends Exception { }
static class MyResource implements AutoCloseable {
public void close() throws E1 { }
}
void m() throws E1 {
try (MyResource r = new MyResource()) {
}
}
}