blob: a5ef4f53b00f9437ff3e50e4bed1fe63399fa9d0 [file] [log] [blame]
class Coll <X, Y> {
X f;
Y s;
Coll<Y, X> a;
}
class Test {
void foo() {
Coll x;
x.a.f = "";
x.a.s = new Integer(3);
}
}