blob: be0959c63fc23a452a06a2a40361f33cf798d7b6 [file] [log] [blame]
class A {
const A(int x, {String? y});
const factory A.redir(int x, {String? y}) = A;
}
main() {}
test1() => const A(y: "foo", 0);
test2() => const A.redir(y: "foo", 0);