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