mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 10:20:56 +07:00
17 lines
239 B
Java
17 lines
239 B
Java
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());
|
|
}
|
|
} |