blob: a3c16dd186b61757d059c5bb3a44b4346b63390f [file] [log] [blame]
class B<T,S>{}
abstract class A<T> {
abstract B<T,T> foo();
<T> void baz(B<T,T> b){}
void bar(A<?> a){
baz(a.foo());
}
}