blob: c6dec3d2f6cd4dfd251cbd03d646876c5101a87f [file] [log] [blame]
// "Replace with lambda" "true"
class HelloLambda {
final int x;
HelloLambda() {
x = 1;
Runnable r = () -> System.out.println(x);
}
}