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