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