mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
GitOrigin-RevId: f6146f9e06b0f618f1512b7b864532e126d7beda
14 lines
251 B
Java
14 lines
251 B
Java
class Example extends Zuper{
|
|
public class Inner{
|
|
static String i;
|
|
}
|
|
|
|
Example() {
|
|
super(new <error descr="Cannot reference 'Inner' before superclass constructor is called">Inner</error>().i);
|
|
}
|
|
}
|
|
|
|
class Zuper {
|
|
Zuper(Object o) {
|
|
}
|
|
} |