mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
16 lines
221 B
Plaintext
16 lines
221 B
Plaintext
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());
|
|
}
|
|
} |