testdata for IDEA-139096

This commit is contained in:
Anna Kozlova
2015-12-09 18:49:28 +01:00
parent f8b1c58139
commit be223c2734
2 changed files with 14 additions and 0 deletions
@@ -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);
}