mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 20:42:52 +07:00
testdata for IDEA-71645
This commit is contained in:
+20
@@ -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() );
|
||||
}} );
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user