mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 11:36:59 +07:00
7 lines
225 B
Java
7 lines
225 B
Java
class OtherClass {
|
|
public class InnerClass {}
|
|
}
|
|
|
|
class Main<B extends OtherClass.InnerClass> { }
|
|
class Main1 extends <error descr="No enclosing instance of type 'OtherClass' is in scope">OtherClass.InnerClass</error> { }
|