testdata for IDEA-57312

This commit is contained in:
anna
2013-08-06 20:48:33 +02:00
parent c8cc567c52
commit 75b37b8dbf
2 changed files with 12 additions and 0 deletions
@@ -0,0 +1,11 @@
class A<T> {
A<A<? super A<T>>> foo(){
return null;
}
void bar(A<?> x){
baz(x.foo());
}
<S> void baz(A<A<? super A<S>>> x){}
}