blob: 4cc128c583d2d25eb11b904c9d7e388fbd4ac090 [file] [log] [blame]
class Iterator<T>{
public T get(){return null;}
}
class LinkedList<T>{
T t;
public Iterator<T> iterator(){
return null;
}
}
class Simple {
}
class Test{
LinkedList x;
Test(Test t){
x = t.x;
}
void f (){
x.t = new Integer(3);
}
}