blob: 20f9b40c633f93d428bb9355526b54b2ff4eaea1 [file] [log] [blame]
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>());
}
}