blob: 4921dd1ccd377001153445f0340e5d60dadc3d59 [file] [log] [blame]
class List<T> {
<A> List<A> f (List<A> x){
return x;
}
T t;
}
class Test {
void foo (){
List x = null;
List y = x.f(x);
x.t = "";
}
}