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,8 @@
class C<Y, X> {
}
class Usage extends C<Integer, String> {
{
C<String, Boolean> = new C();
}
}