blob: dcd4a35fed33f8739d325d5841ab97fccea7c849 [file] [log] [blame]
class List<T> {}
class Base<T> {
def foo(List<T>[] l, String s) {}
}
class Inheritor extends Base<Integer> {
def foo(List<Integer>[] l, String s) {}
{
new Inheritor().foo([new List<Integer>()] as List<Integer>[], "a");
}
}