blob: 9bf39b64323d46a7e66a53d45368335204f5a2ec [file] [log] [blame]
class List<T> {
T t;
}
class Test {
void foo (){
List x = new List();
x.t = new int[3];
}
}