blob: 84f4c489f28c5e8cf8268657c6940229b6960c86 [file] [log] [blame]
class LinkedList <T> {
T e;
LinkedList<T> get() {
return this;
}
}
class Test {
LinkedList f() {
return null;
}
void foo(){
f().e = "";
}
}