mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 02:24:00 +07:00
GitOrigin-RevId: 182bf576b00e2bddddb3767d1cd938a625337778
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) {}
|
|
} |