blob: 83f433b7765304d596a4e3784cd029125985605e [file] [log] [blame]
class List<T> {
<A extends T> List(List<A> x){
}
T t;
}
class Test {
void foo (){
List x = null;
List y = new List(x);
x.t = "";
}
}