blob: 423187d9b92a34f0f9eec075cd5089c958356b9a [file] [log] [blame]
// @dart = 2.9
class Foo<T> {
Foo._internal({this.x});
Foo.from(String _init) : this._internal(x: _init);
T x;
}
void main() {}