mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
18 lines
384 B
Java
18 lines
384 B
Java
class FirstLevel {
|
|
FirstLevel(Object i) {
|
|
}
|
|
|
|
class SecondLevel {
|
|
|
|
class ThirdLevel extends FirstLevel {
|
|
|
|
ThirdLevel(int i) {
|
|
super(new ThirdLevel(1) {
|
|
public void a() {
|
|
<error descr="Cannot reference 'ThirdLevel.this' before superclass constructor is called">ThirdLevel.this</error>.hashCode();
|
|
}
|
|
});
|
|
}
|
|
}
|
|
}
|
|
} |