blob: 5b2738f8bfc8151327f3da4faba5fdf766f92ae8 [file] [log] [blame]
class LinkedList <T> {
T e;
LinkedList<T> get() {
return this;
}
}
class Test {
LinkedList f() {
return null;
}
void foo(){
LinkedList<Integer> x = (LinkedList<Integer>) f();
}
}