blob: dc626e01c64f2f63b2c30fac7f0f77fb52f78211 [file] [log] [blame]
public class A {
int f = 23;
static class B {
static int f = 42;
}
int foo() {
int r = B.f;
A B = this;
return r<caret>;
}
public static void main(String[] args) {
System.out.println(new A().foo());
}
}