blob: 233f559cb21060e38ff1b47a58adde931dd6169a [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(){
x=y;
x.set(new Integer(3));
}
}