blob: d4a5f4ac18c2b5b787e7de5f5970763ec9b6ba7c [file] [log] [blame]
class LinkedList <T> {
T e;
LinkedList<T> get() {
return this;
}
}
class Aux{
LinkedList<Object> x;
}
class Test {
Aux a = null;
void foo(){
LinkedList y = a.x;
y.e = "";
}
}