blob: 874a002ecf96e5c8de4feda0880ba661cd122d40 [file] [log] [blame]
class Coll <T, X> {
T t;
X x;
Coll<X, T> f() {return null;};
}
class Test {
void foo() {
Coll x;
x.f().t = "";
x.t = new Integer(4);
}
}