blob: b846752c97a0b9e3d63bf2fe92f47ff9a1918033 [file] [log] [blame]
withUnnamedArguments(int? i, void Function(void Function(), Object?) f) {}
withNamedArguments(
int? i, void Function({required void Function() g, Object? x}) f) {}
withIdentical_lhs(int? i) {}
withIdentical_rhs(int? i) {}
class B {
B(Object? x, void Function() g, Object? y);
B.redirectingConstructorInvocation(int? i)
: this(i!, () {
i = null;
}, i);
}
class C extends B {
C.superConstructorInvocation(int? i)
: super(i!, () {
i = null;
}, i);
}
main() {}