control flow: take qualifier of left part of assignment expression into account (IDEA-146221)

This commit is contained in:
Anna Kozlova
2015-10-09 17:17:12 +02:00
parent ca7f62e994
commit 866498cc6f
4 changed files with 26 additions and 0 deletions
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="UTF-8"?>
<problems/>
@@ -0,0 +1,15 @@
class D {
D first;
}
class Test {
private D myDSettings;
protected void setUp() {
myDSettings = null;
}
public void testModuleCycle() {
myDSettings.first = null;
}
}