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