blob: 129dbd335a82db7c7e13a07a734516d2706b7f9e [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<Simple> k;
LinkedList x;
void f(){
x.set(new Integer());
}
}