mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 02:21:17 +07:00
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) {
|
|
}
|
|
} |