mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-17 21:15:58 +07:00
7 lines
123 B
Java
7 lines
123 B
Java
class C<T> {
|
|
<T> T foo (C<? extends T> c) {return null;}
|
|
|
|
void bar (C<? extends String> c) {
|
|
<ref>foo(c);
|
|
}
|
|
} |