blob: f4cf2ee8896465ceecc1e10e2b372415055a5cfa [file] [log] [blame]
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() {}
withIdentical_lhs(int? i) {}
withIdentical_rhs(int? i) {}
withNamedArguments(
int? i, void Function({required void Function() g, Object? x}) f) {}
withUnnamedArguments(int? i, void Function(void Function(), Object?) f) {}