This commit is contained in:
Dmitry Jemerov
2009-09-10 19:21:47 +04:00
parent 024cd48836
commit f7615dcf7e
13 changed files with 6 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
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>>();
}
}