mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
moved to community, dropped obsolete tests
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
class Parent{
|
||||
|
||||
protected Child createChild() {
|
||||
return null;
|
||||
}
|
||||
|
||||
static class Child {
|
||||
}
|
||||
}
|
||||
|
||||
class SubClass extends Parent {
|
||||
//Do not shorten Parent.Child to Child
|
||||
protected Parent.Child createChild() {
|
||||
return null;
|
||||
}
|
||||
|
||||
class Child extends Parent.Child {}
|
||||
}
|
||||
Reference in New Issue
Block a user