testdata for IDEA-67835

This commit is contained in:
anna
2013-07-17 20:31:46 +02:00
parent e6ee01a887
commit b1418932ee
2 changed files with 11 additions and 0 deletions
@@ -0,0 +1,10 @@
import java.util.List;
class B {
void bar(List<String> x){
foo(x);
}
<T> T foo(List<? super T> x){
return null;
}
}