mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
9 lines
173 B
Plaintext
9 lines
173 B
Plaintext
class L<E> {}
|
|
class <caret>C<T, E> {
|
|
}
|
|
|
|
class Usage extends C<String, L<String>> {
|
|
{
|
|
C<? extends Integer, L<? extends Integer>> c = new C<Integer, L<Integer>>();
|
|
}
|
|
} |