mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
14 lines
280 B
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 { }
|
|
} |