mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-03 15:50:52 +07:00
14 lines
256 B
Java
14 lines
256 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 foo() { }
|
|
} |