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