blob: 76e2016004b5be6ad8d6b929089c38880f80f32f [file] [log] [blame]
class List<T> {
T t;
}
class Test {
void foo (){
List[] y = new List [10];
List x = y[0];
y[1].t = "";
x.t = new Integer(2);
}
}