blob: ea6f07f11f530d9e8f9467137c24f07325ce8ad6 [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(){
y.get();
}
}