mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 09:20:53 +07:00
14 lines
252 B
Java
14 lines
252 B
Java
import java.util.Collections;
|
|
import java.util.Set;
|
|
|
|
class Test<Y> {
|
|
|
|
public static <K> Test<K> doTest(K k){
|
|
return null;
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
Test.<Set<String>>doTest(Collections.emptySet());
|
|
}
|
|
}
|