mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
19 lines
381 B
Plaintext
19 lines
381 B
Plaintext
public class QualifiedNewTest {
|
|
public class C2 {
|
|
private int a;
|
|
|
|
}
|
|
|
|
public class C2User {
|
|
public void test() {
|
|
C2 c2 = new C2();
|
|
final C2 c21 = c2;
|
|
Object inner = new Object() {
|
|
public void doStuff() {
|
|
System.out.println(c21.a);
|
|
}
|
|
};
|
|
}
|
|
}
|
|
}
|