mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-23 23:59:20 +07:00
Part of IDEA-365344 Create a new Java error highlighter with minimal dependencies (PSI only) GitOrigin-RevId: 3c292fdf4869e6d13c16fabbf42e2055ea54f724
11 lines
219 B
Java
11 lines
219 B
Java
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;
|
|
}
|
|
} |