mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 15:41:26 +07:00
generics: allow foreign interface usage in class type arguments
This commit is contained in:
+8
@@ -11,4 +11,12 @@ class BugTestSub extends IdeaBugTest<<error descr="SubMapping is not accessible
|
||||
class BugTestSub1 extends IdeaBugTest<BugTestSub1.SubMapping>
|
||||
{
|
||||
public abstract static class SubMapping extends IdeaBugTest.Mapping {} //fqn here
|
||||
}
|
||||
|
||||
class AbstractSettings {
|
||||
interface State {}
|
||||
}
|
||||
interface SomeInterface<T> {}
|
||||
class Settings extends AbstractSettings implements SomeInterface<Settings.MyState> {
|
||||
static class MyState implements State {}
|
||||
}
|
||||
Reference in New Issue
Block a user