mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 05:09:37 +07:00
11 lines
199 B
Java
11 lines
199 B
Java
|
|
|
|
class Unassigned {
|
|
public final int a;
|
|
public int b;
|
|
|
|
Unassigned(int value) {
|
|
b = <error descr="Variable '(this).a' might not have been initialized">(this).a</error>;
|
|
a = value;
|
|
}
|
|
} |