blob: 593848bdb56b22840e48e9836928d57f205f3265 [file] [log] [blame]
class Foo<T extends X> {
Foo._internal({required this.x});
Foo.fromT(T _init) : this._internal(x: _init);
Foo.fromX(X _init) : this._internal(x: _init);
T x;
}
class X {}
void main() {}