blob: dcba070db55d50ef6f7a0a379139c016d931582d [file] [log] [blame]
class Foo {
factory Foo.make(x) = Foo.create;
var x;
Foo.create(this.x);
}
main() {
print(new Foo.make(5));
}