mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
13 lines
284 B
Java
13 lines
284 B
Java
// "Add 'catch' clause(s)" "true-preview"
|
|
import java.io.IOException;
|
|
|
|
class Test {
|
|
static class MyResource implements AutoCloseable {
|
|
public void close() throws IOException { }
|
|
}
|
|
|
|
void m() {
|
|
try (<caret>MyResource r = new MyResource()) {
|
|
}
|
|
}
|
|
} |