Files

11 lines
173 B
Java

class List<T> {}
class Test {
<T> List<T> asList(T... ts) {
return null;
}
void foo () {
<caret>asList(new Integer[0], new Integer[0]);
}
}