mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-29 08:20:55 +07:00
Part of IDEA-365344 Create a new Java error highlighter with minimal dependencies (PSI only) GitOrigin-RevId: 3c292fdf4869e6d13c16fabbf42e2055ea54f724
11 lines
192 B
Java
11 lines
192 B
Java
|
|
|
|
class Unassigned {
|
|
public final int a;
|
|
public int b;
|
|
|
|
Unassigned(int value) {
|
|
b = <error descr="Variable 'a' might not have been initialized">(this).a</error>;
|
|
a = value;
|
|
}
|
|
} |