blob: 2b49772ea568b70570ef76ac23e6b57aa7346d43 [file] [log] [blame]
class SubNamed extends Super {
SubNamed.namedAnywhere(double x, String z, {super.y}) : super.named(z: z, x);
}
class Super {
Super.named(num x, {bool y = false, String? z});
}
main() {}