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