mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-20 07:21:13 +07:00
Part of IDEA-365344 Create a new Java error highlighter with minimal dependencies (PSI only) GitOrigin-RevId: 5b74826b2383518fa7a8a0fcbbd0d17271aa8381
11 lines
235 B
Java
11 lines
235 B
Java
class MyTest {
|
|
final Runnable lambdaRunnable = () -> {
|
|
System.out.println(<error descr="Cannot read value of field 'o' before the field's definition">o</error>);
|
|
};
|
|
|
|
final Object o;
|
|
|
|
MyTest(Object o) {
|
|
this.o = o;
|
|
}
|
|
} |