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