ignore parenthesis when building control flow (IDEA-156926)

This commit is contained in:
Anna Kozlova
2016-06-01 21:19:15 +03:00
parent d74f07e07c
commit a82e3bb5e6
3 changed files with 16 additions and 1 deletions
@@ -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;
}
}