blob: 1063cc94b175db953a3abf737fa65aeaa532bb78 [file] [log] [blame]
mixin Base {
Object? methodWithDefaultImpl() {}
}
mixin TestFailure<A> on Base {
@override
methodWithDefaultImpl({A? nameParam});
}
void main() {}