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