blob: d8558722d26ec4ff8880c4611c52eaac9851bf3a [file] [log] [blame]
class A<K>{
void foo(A<A<A<String>>> b){ bar(b); }
<U, S extends A<U>, T extends A<S>> void bar(A<T> a){}
}