blob: b0ff4b7dbc76dc4a21014fc95c49c0156f650365 [file] [log] [blame]
class MyTest {
final Runnable lambdaRunnable = () -> {
System.out.println(<error descr="Variable 'o' might not have been initialized">o</error>);
};
final Object o;
MyTest(Object o) {
this.o = o;
}
}