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