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