blob: 5455e6c5c1531e861a1cae607c5568895e76ec0b [file] [log] [blame]
class Foo {
@forFactoryItself
factory Foo(@forParameter @anotherForParameter p) = Foo.named;
Foo.named(p);
}
const anotherForParameter = 3;
const forFactoryItself = 2;
const forParameter = 1;
main() {}