mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +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){}
|
|
}
|