mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
13 lines
254 B
Java
13 lines
254 B
Java
// "Replace with lambda" "true-preview"
|
|
class Test {
|
|
Integer s;
|
|
private void m() {
|
|
Runnable r = new Runna<caret>ble() {
|
|
@Override
|
|
public void run() {
|
|
System.out.println(s);
|
|
Integer s = Test.this.s;
|
|
}
|
|
};
|
|
}
|
|
} |