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