blob: b9352abaa106cb6cfefa04cf78221d1e58ef7410 [file] [log] [blame]
class List<T> {
T t;
}
class Test {
void foo (){
List y = new List();
List x = new List();
x.t = y.t;
y.t = x.t;
x.t = "";
y.t = new Integer(3);
}
}