blob: 29e9a4f1716c7a207a7fd1e878fe183c18c8cde2 [file] [log] [blame]
class LinkedList <T> {
T e;
LinkedList<T> get() {
return this;
}
}
class Test {
Test(LinkedList x){
}
void foo(){
LinkedList y = new LinkedList();
Test x = new Test(y);
y.e = new Integer(3);
}
}