mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 04:37:32 +07:00
ignore parenthesis when building control flow (IDEA-156926)
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user