blob: 0beff38cadcd74a51ce65f1423863a5515356e0b [file] [log] [blame]
class Test {
void test() throws Exception {
try (MyResourceImpl r = new MyResourceImpl()) {
r.getName();
}
}
interface MyResource extends AutoCloseable {
String getName();
}
static class MyResourceImpl implements MyResource {
public String getName() { return ""; }
public void close() throws Exception { }
}
}