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