mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-29 08:20:55 +07:00
7 lines
150 B
Java
7 lines
150 B
Java
// "Replace with lambda" "true"
|
|
class HelloLambda {
|
|
private final Runnable r = () -> {
|
|
System.out.println(x);
|
|
};
|
|
private static int x = 0;
|
|
} |