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