blob: a6850ebb3e30ea26ad09b7529ef2c8fad40ad29a [file] [log] [blame]
// @dart = 2.9
library test;
class Foo {
var x = 1;
Foo([this.x = "1"]);
}
main() {}