blob: 81cb032f4741dae876e84e64503264ffc6221c8d [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 = y.get();
y.set(new LinkedList<Simple> ());
}
}