mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 14:25:04 +07:00
testdata for IDEA-139096
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
import java.io.*;
|
||||
import java.util.*;
|
||||
|
||||
abstract class C {
|
||||
Iterator<? extends Comparable<? extends Serializable>> bar(List<String> x, Set<Integer> y) {
|
||||
return foo(x, y).iterator();
|
||||
}
|
||||
|
||||
abstract <T> T foo(T x, T y);
|
||||
}
|
||||
Reference in New Issue
Block a user