moved to community, dropped obsolete tests

This commit is contained in:
Alexey Kudravtsev
2010-08-11 13:22:22 +04:00
parent c336fa7faf
commit 1314259c53
207 changed files with 7263 additions and 0 deletions
@@ -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 {}
}