avoid format!

This commit is contained in:
Christian Poveda 2022-04-26 11:11:23 +02:00
parent 2e261a82f3
commit 35b42cb9ec
No known key found for this signature in database
GPG Key ID: 27525EF5E7420A50

View File

@ -1176,13 +1176,13 @@ pub(super) fn maybe_report_ambiguous_plus(
struct AmbiguousPlus {
pub sum_with_parens: String,
#[primary_span]
#[suggestion(code = "{sum_with_parens}")]
#[suggestion(code = "({sum_with_parens})")]
pub span: Span,
}
if matches!(allow_plus, AllowPlus::No) && impl_dyn_multi {
self.sess.emit_err(AmbiguousPlus {
sum_with_parens: format!("({})", pprust::ty_to_string(&ty)),
sum_with_parens: pprust::ty_to_string(&ty),
span: ty.span,
});
}