testdata for IDEA-71645

This commit is contained in:
anna
2013-05-03 13:30:02 +02:00
parent 8d301f4f3e
commit f4e45c7219
2 changed files with 21 additions and 0 deletions
@@ -0,0 +1,20 @@
class Component {
void addChild( Component b ) {
}
}
class Panel extends Component {
public Panel( Component pNode ) {
}
Panel() {
}
}
class VerticalPanel extends Panel {
public VerticalPanel() {
super( new Component() {{
addChild( new Panel() );
}} );
}
}