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