mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-06 13:20:53 +07:00
5 lines
116 B
Java
5 lines
116 B
Java
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){}
|
|
}
|