mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 20:07:01 +07:00
7 lines
190 B
Java
7 lines
190 B
Java
// "Apply all 'Replace with Java-style array declaration' fixes in file" "true"
|
|
import java.util.List;
|
|
class Vararg {
|
|
|
|
void x(int[][]... ns) {}
|
|
void vararg(List<String>[]... values) {}
|
|
} |