blob: b575a53519c4bd42e146432db818e13479736806 [file] [log] [blame]
class Test {
TestImpl myParent;
public Test(TestImpl parent) {
myParent = parent;
}
class TestImpl extends Test {
public TestImpl(TestImpl parent) {
super(parent);
}
}
}