fixes & tests

This commit is contained in:
Maxim Medvedev
2010-05-30 17:28:36 +04:00
parent 06dc46d6cd
commit 9b56725bd0
20 changed files with 401 additions and 173 deletions
@@ -0,0 +1,14 @@
class List<T> {}
class Base<T> {
void foo(List<T>[] l, String s) {}
}
class Inheritor extends Base<Integer> {
void foo(List<Integer>[] l, String s) {}
{
new Inheritor().foo(new List[]{new List<Integer>()}, "a");
}
}