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