mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +07:00
moved java resolve tests to community
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
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));
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user