blob: aead3a84f9ebb042dc82720b764d4a3a0909905d [file] [log] [blame]
class LinkedList <T> {
T e;
LinkedList<T> get() {
return this;
}
}
class Test {
LinkedList x;
Test(Test y){
x = y.x;
}
}