blob: 7e18f1dacc07380943dcae03d942d6b7fec52cba [file] [log] [blame]
class LinkedList <T> {
T t;
T get() {
return t;
}
}
class Test {
void f (LinkedList x){
x.t = "";
}
void f() {
LinkedList x = new LinkedList();
f (x);
}
}