testdata for IDEA-57289

This commit is contained in:
anna
2013-07-26 20:10:45 +02:00
parent 562a03a913
commit 07937a57e5
2 changed files with 9 additions and 0 deletions
@@ -0,0 +1,8 @@
class C<T> {
void foo(C<C<?>> x) {
C<Object> c = bar(x);
}
<T> C<T> bar(C<? super C<T>> x){
return null;
}
}