testdata for IDEA-57493

This commit is contained in:
anna
2012-10-23 21:08:43 +02:00
parent c4666625ee
commit c4b1b83089
2 changed files with 9 additions and 0 deletions
@@ -0,0 +1,8 @@
abstract class A<T>{
abstract <S> S foo(S x, S y);
<S extends Number & Comparable<?>> void baz(A<S> a){}
void bar(A<Long> x, A<Integer> y){
baz(foo(x, y));
}
}