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