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
@@ -0,0 +1,9 @@
class L<E> {}
class <caret>C<T> {
}
class Usage extends C<String> {
{
C<? extends Integer> c = new C<Integer>();
}
}