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