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