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