mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 05:18:06 +07:00
GitOrigin-RevId: 89f3781736ca0f67437538878c26174286657973
13 lines
251 B
Plaintext
13 lines
251 B
Plaintext
class X {
|
|
void use() {
|
|
AutoCloseable r = () -> {};
|
|
AutoCloseable ref = r;
|
|
try(ref) {
|
|
System.out.println(ref);
|
|
}
|
|
catch (Exception e) {
|
|
throw new RuntimeException(e);
|
|
}
|
|
}
|
|
|
|
} |