mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
17 lines
288 B
Java
17 lines
288 B
Java
public class ArrayInitBeforeSuper {
|
|
public static void main(String[] args) {
|
|
}
|
|
|
|
public class Example extends Zuper{
|
|
public class Inner{
|
|
}
|
|
Example() {
|
|
super(new Inner[]{}); // <<<< NOT ERROR
|
|
}
|
|
}
|
|
|
|
class Zuper {
|
|
Zuper(Example.Inner[] inners) {
|
|
}
|
|
}
|
|
} |