mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
control flow: take qualifier of left part of assignment expression into account (IDEA-146221)
This commit is contained in:
+2
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<problems/>
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
class D {
|
||||
D first;
|
||||
}
|
||||
|
||||
class Test {
|
||||
private D myDSettings;
|
||||
|
||||
protected void setUp() {
|
||||
myDSettings = null;
|
||||
}
|
||||
|
||||
public void testModuleCycle() {
|
||||
myDSettings.first = null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user