blob: 07b753ab2ac8c10b5c732944cfda439585cbe289 [file] [log] [blame]
class Coll <T> {
T t;
Coll x;
}
class Test {
void foo() {
Coll x;
x.x.t = "";
}
}