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