This commit is contained in:
Dmitry Jemerov
2009-09-11 17:54:01 +04:00
parent 7b8e590baf
commit bc94b5f3ff
17 changed files with 8 additions and 17 deletions
@@ -0,0 +1,17 @@
class Foo {
public int x;
public void foo() {
int y = 0;
y = x + 1;
}
public class Inner {
public int <caret>z;
public void foo() {
z = new Foo().x + 1;
z = x + 1;
}
}
}