mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
18 lines
266 B
Java
18 lines
266 B
Java
class Foo {
|
|
public int x;
|
|
|
|
public void foo() {
|
|
int y = 0;
|
|
y = x + 1;
|
|
}
|
|
|
|
public class Inner {
|
|
public int <caret>x;
|
|
|
|
public void foo() {
|
|
x = new Foo().x + 1;
|
|
x = Foo.this.x + 1;
|
|
}
|
|
}
|
|
}
|