mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
15 lines
172 B
Plaintext
15 lines
172 B
Plaintext
abstract class Test {
|
|
|
|
void foo() {
|
|
}
|
|
}
|
|
class Test2 extends Test {
|
|
|
|
{
|
|
new Object() {
|
|
void foo() {
|
|
Test2.this.foo();
|
|
}
|
|
};
|
|
}
|
|
} |