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