blob: 67a67e9547f268cf10241a56422cd11c7ca88f57 [file] [log] [blame]
class Foo<T> {
T x;
Foo.from(String _init) : this._internal(x: _init);
Foo._internal({this.x});
}
void main() {}