mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 07:50:55 +07:00
21 lines
353 B
Java
21 lines
353 B
Java
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() {
|
|
<caret>x(any(Long.class));
|
|
}
|
|
|
|
}
|