blob: 443c22b358c65623db1d39d479941153250219d0 [file] [log] [blame] [edit]
class A {
const A(int x);
const factory A.redir(int x) = A;
}
@A.redir(1)
foo(@A.redir(2) String y) {}
main() {}