blob: 86de0c0d5cf4e0567187ac0d995546cbdf0e547a [file] [log] [blame]
library test;
abstract class C<T> {
T get t;
void set t(T x);
factory C(T t) = CImpl<T>;
}
class CImpl<T> implements C<T> {
T t;
CImpl(this.t);
}
main() {}