mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
17 lines
306 B
Plaintext
17 lines
306 B
Plaintext
public class QualifyInnerTest {
|
|
public class C2User {
|
|
public void test() {
|
|
Object inner = new Object() {
|
|
public void doStuff() {
|
|
System.out.println(C2.a);
|
|
}
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|
|
class C2 {
|
|
public static int a;
|
|
|
|
}
|