blob: 925ecd2490caccad47b76f7f0e72b6ce6510f080 [file] [log] [blame]
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());
}
}