mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
20 lines
357 B
Java
20 lines
357 B
Java
class MyTest {
|
|
|
|
static class Super {
|
|
class Inner {
|
|
Inner(int i){}
|
|
}
|
|
}
|
|
|
|
static class Child extends Super {
|
|
|
|
interface I {
|
|
Inner m(Child child, int i);
|
|
}
|
|
|
|
void test() {
|
|
I var = Child.Inner::<error descr="Cannot resolve constructor 'Inner'">new</error>;
|
|
}
|
|
}
|
|
}
|