mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 20:42:52 +07:00
Inline inner: assignments to local vars and params in constructor body fixed (IDEA-39285)
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
class Usage {
|
||||
private Object wc1 = new Object() {
|
||||
private int myInt = 8;
|
||||
private String myString = "Sashya";
|
||||
|
||||
{
|
||||
int i = 2;
|
||||
i = 3;
|
||||
myInt = i + 17;
|
||||
int j = 4;
|
||||
j = 5;
|
||||
myString = "Sa".substring(j);
|
||||
}
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user