blob: 6cc8c23cecd2c4b82e0d3f905605768b88e10d92 [file] [log] [blame]
// @dart = 2.6
class Foo<T extends X> {
Foo._internal({this.x});
Foo.fromT(T _init) : this._internal(x: _init);
Foo.fromX(X _init) : this._internal(x: _init);
T x;
}
class X {}
void main() {}