mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
20 lines
279 B
Plaintext
20 lines
279 B
Plaintext
class A {
|
|
}
|
|
|
|
class B {
|
|
public void test() {
|
|
Object inner = new Object() {
|
|
private void a() {
|
|
}
|
|
|
|
private void b() {
|
|
}
|
|
|
|
class InnerA {
|
|
}
|
|
|
|
class InnerB {
|
|
}
|
|
};
|
|
}
|
|
} |