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