blob: 214675601a3cc9a74db4bec14b540186041188a7 [file] [log] [blame]
class LinkedList<T>{
T t;
public T get(){return t;}
public void set (T t){
this.t = t;
}
}
class Simple {
boolean f(){
return false;
}
}
class Test{
LinkedList y;
LinkedList x;
void f(){
x = (LinkedList) y.get();
}
}