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