mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 18:48:28 +07:00
GitOrigin-RevId: 89f3781736ca0f67437538878c26174286657973
15 lines
289 B
Java
15 lines
289 B
Java
class X {
|
|
void use() {
|
|
AutoCloseable r = () -> {};
|
|
<caret>test(r);
|
|
}
|
|
|
|
void test(AutoCloseable ref) {
|
|
try(ref) {
|
|
System.out.println(ref);
|
|
}
|
|
catch (Exception e) {
|
|
throw new RuntimeException(e);
|
|
}
|
|
}
|
|
} |