Files

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) {}
}