mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-29 08:20:55 +07:00
8 lines
242 B
Java
8 lines
242 B
Java
class Test {
|
|
class Test1 extends Test {}
|
|
static class Test2 extends <error descr="No enclosing instance of type 'Test' is in scope">Test1</error> {}
|
|
|
|
|
|
static class Test11 extends Test {}
|
|
static class Test21 extends Test11 {}
|
|
} |