blob: 6c2a1ba5ae2d3c55635b62f7b0bc84b17ee19b07 [file] [log] [blame]
class List<T> {
T t;
}
class Test{
List g (){
return new List<Integer>();
}
}