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