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