blob: 8eed10afdadf77659fc09ba4f0a49f78859aa66a [file] [log] [blame]
class List<T> {}
class Test {
<T> List<T> asList(T... ts) {
return null;
}
void foo () {
<ref>asList(new Integer[0], new Integer[0]);
}
}