blob: 2802a5a3a22d1fe023bde767996986fbdede6761 [file] [log] [blame]
class List<T> {
T t;
void set(T t){
this.t = t;
}
}
class Test {
void foo (){
List y = new List();
List z = new List();
y.set("");
z.set(new Integer(3));
List[] x = new List[] {y, z};
}
}