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