blob: 71694b126e40f2143519fa5c2ff6f5182740c25c [file] [log] [blame]
import java.util.*;
class SSS {
public <T> void x(List<T> matcher) {
System.out.println("<T>");
}
public int x(List<Long> matcher) {
System.out.println("long");
return 0;
}
public static <T> List<T> any(Class<T> type) {
return null;
}
void f() {
<ref>x(any(Long.class));
}
}