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