blob: cc24c1b423d91de476d1a311f3a59cc44cb0ca1c [file] [log] [blame]
class LinkedList<T>{
T t;
public T get(){return t;}
public void set (T t){
this.t = t;
}
}
class Simple {
}
class Test{
LinkedList y;
LinkedList x;
void f(){
y.set((LinkedList) x.get());
y.set(new Integer(3));
}
}