mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-16 06:19:49 +00:00
9 lines
122 B
Java
9 lines
122 B
Java
import java.util.List;
|
|
|
|
class ArrayAndVarargs {
|
|
void test(List<String[]>... foo) {
|
|
}
|
|
|
|
void test2(byte[]... foo) {
|
|
}
|
|
} |