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 fo<caret>o(String s, List<T>... l) {}
}
class Inheritor extends Base<Integer> {
void foo(String s, List<Integer>... l) {}
{
new Inheritor().foo("a", new List<Integer>());
}
}