mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
13 lines
240 B
Java
13 lines
240 B
Java
// "Replace with lambda" "false"
|
|
class Foo11 {
|
|
Runnable runnable = new Runnable() {
|
|
public void run() {
|
|
int x = 5;
|
|
new Runn<caret>able() {
|
|
public void run () {
|
|
int x = 10;
|
|
}
|
|
} ;
|
|
}
|
|
};
|
|
} |