blob: 8cd8b3b5b32d9b51094d7562e1aafa69ac9a0360 [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() {}