Skip to content

Commit cde8f06

Browse files
committed
enable suggest convert to slice for binary operation
1 parent 3635b48 commit cde8f06

File tree

1 file changed

+5
-3
lines changed
  • compiler/rustc_trait_selection/src/traits/error_reporting

1 file changed

+5
-3
lines changed

compiler/rustc_trait_selection/src/traits/error_reporting/suggestions.rs

+5-3
Original file line numberDiff line numberDiff line change
@@ -3953,9 +3953,11 @@ impl<'tcx> TypeErrCtxtExt<'tcx> for TypeErrCtxt<'_, 'tcx> {
39533953
candidate_impls: &[ImplCandidate<'tcx>],
39543954
span: Span,
39553955
) {
3956-
// We can only suggest the slice coersion for function arguments since the suggestion
3957-
// would make no sense in turbofish or call
3958-
let ObligationCauseCode::FunctionArgumentObligation { .. } = obligation.cause.code() else {
3956+
// We can only suggest the slice coersion for function and binary operation arguments,
3957+
// since the suggestion would make no sense in turbofish or call
3958+
let (ObligationCauseCode::BinOp { .. }
3959+
| ObligationCauseCode::FunctionArgumentObligation { .. }) = obligation.cause.code()
3960+
else {
39593961
return;
39603962
};
39613963

0 commit comments

Comments
 (0)