mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 10:20:56 +07:00
13 lines
231 B
Java
13 lines
231 B
Java
// "Make 'r' final" "false"
|
|
|
|
class C {
|
|
void m() throws Exception {
|
|
try (AutoCloseable r = null) {
|
|
new Runnable() {
|
|
public void run() {
|
|
System.out.println(<caret>r);
|
|
}
|
|
}.run();
|
|
}
|
|
}
|
|
} |