mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
6 lines
336 B
Java
6 lines
336 B
Java
class Vararg {
|
|
|
|
void x(<error descr="Vararg parameter must be the last in the list">int... ns</error>, boolean b) {}
|
|
void y(int... ns<error descr="C-style array declaration not allowed in vararg parameter">[][]</error>) {}
|
|
void z(int[]... ns<error descr="C-style array declaration not allowed in vararg parameter">[]</error>) {}
|
|
} |