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