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