introduce variable: common api (IDEA-94609; IDEA-125286; IDEA-131965; IDEA-131930)

This commit is contained in:
Anna Kozlova
2014-11-17 12:11:35 +01:00
parent 956108b49f
commit 57a097f90c
35 changed files with 725 additions and 263 deletions
@@ -0,0 +1,8 @@
class C {
{
int[] a = new int[1];
int x = a[1];
x = 42;
System.out.println(x);
}
}