mirror of
https://github.com/github/codeql.git
synced 2026-01-09 20:50:21 +01:00
14 lines
247 B
Java
14 lines
247 B
Java
package varargs;
|
|
|
|
public class Test {
|
|
void f(int... is) {}
|
|
void g(Object... os) {}
|
|
void h(String s, String... ss) {}
|
|
|
|
void ff(int[] is) {}
|
|
void gg(Object[] os) {}
|
|
void hh(String s, String[] ss) {}
|
|
{
|
|
java.util.Arrays.asList(1, 2, 3);
|
|
}
|
|
} |