mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 14:25:04 +07:00
ensure left expression is processed before right in assignments (IDEA-140772)
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
class Test {
|
||||
public static void main(String[] args) {
|
||||
int i;
|
||||
int[] iA = {10,20};
|
||||
iA[<error descr="Variable 'i' might not have been initialized">i</error>] = i = 30;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user