blob: e64e23548641a0897d4705b0a1f3c5aee7659efa [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 x;
LinkedList y;
void f(){
y.set(x.get());
}
}