Silence redundant warning when E0038 will be emitted

This commit is contained in:
Esteban Küber 2024-01-03 23:40:49 +00:00
parent 78ef94618b
commit 698dfc322f
11 changed files with 49 additions and 29 deletions

View File

@ -605,7 +605,7 @@ impl<'o, 'tcx> dyn AstConv<'tcx> + 'o {
let violations = let violations =
object_safety_violations_for_assoc_item(tcx, trait_def_id, *assoc_item); object_safety_violations_for_assoc_item(tcx, trait_def_id, *assoc_item);
if !violations.is_empty() { if !violations.is_empty() {
report_object_safety_error(tcx, *span, trait_def_id, &violations).emit(); report_object_safety_error(tcx, *span, None, trait_def_id, &violations).emit();
object_safety_violations = true; object_safety_violations = true;
} }
} }

View File

@ -122,6 +122,9 @@ impl<'o, 'tcx> dyn AstConv<'tcx> + 'o {
], ],
Applicability::MachineApplicable, Applicability::MachineApplicable,
); );
} else {
// We'll emit the object safety error already, with a structured suggestion.
diag.downgrade_to_delayed_bug();
} }
return true; return true;
} }
@ -145,6 +148,8 @@ impl<'o, 'tcx> dyn AstConv<'tcx> + 'o {
} }
if !is_object_safe { if !is_object_safe {
diag.note(format!("`{trait_name}` it is not object safe, so it can't be `dyn`")); diag.note(format!("`{trait_name}` it is not object safe, so it can't be `dyn`"));
// We'll emit the object safety error already, with a structured suggestion.
diag.downgrade_to_delayed_bug();
} else { } else {
let sugg = if let hir::TyKind::TraitObject([_, _, ..], _, _) = self_ty.kind { let sugg = if let hir::TyKind::TraitObject([_, _, ..], _, _) = self_ty.kind {
// There are more than one trait bound, we need surrounding parentheses. // There are more than one trait bound, we need surrounding parentheses.

View File

@ -140,6 +140,7 @@ impl<'o, 'tcx> dyn AstConv<'tcx> + 'o {
let reported = report_object_safety_error( let reported = report_object_safety_error(
tcx, tcx,
span, span,
Some(hir_id),
item.trait_ref().def_id(), item.trait_ref().def_id(),
&object_safety_violations, &object_safety_violations,
) )

View File

@ -2,9 +2,10 @@ use super::ObjectSafetyViolation;
use crate::infer::InferCtxt; use crate::infer::InferCtxt;
use rustc_data_structures::fx::FxIndexSet; use rustc_data_structures::fx::FxIndexSet;
use rustc_errors::{struct_span_err, DiagnosticBuilder, MultiSpan}; use rustc_errors::{struct_span_err, Applicability, DiagnosticBuilder, MultiSpan};
use rustc_hir as hir; use rustc_hir as hir;
use rustc_hir::def_id::{DefId, LocalDefId}; use rustc_hir::def_id::{DefId, LocalDefId};
use rustc_hir::intravisit::Map;
use rustc_middle::ty::print::with_no_trimmed_paths; use rustc_middle::ty::print::with_no_trimmed_paths;
use rustc_middle::ty::{self, TyCtxt}; use rustc_middle::ty::{self, TyCtxt};
use rustc_span::Span; use rustc_span::Span;
@ -42,6 +43,7 @@ impl<'tcx> InferCtxt<'tcx> {
pub fn report_object_safety_error<'tcx>( pub fn report_object_safety_error<'tcx>(
tcx: TyCtxt<'tcx>, tcx: TyCtxt<'tcx>,
span: Span, span: Span,
hir_id: Option<hir::HirId>,
trait_def_id: DefId, trait_def_id: DefId,
violations: &[ObjectSafetyViolation], violations: &[ObjectSafetyViolation],
) -> DiagnosticBuilder<'tcx> { ) -> DiagnosticBuilder<'tcx> {
@ -59,6 +61,24 @@ pub fn report_object_safety_error<'tcx>(
); );
err.span_label(span, format!("`{trait_str}` cannot be made into an object")); err.span_label(span, format!("`{trait_str}` cannot be made into an object"));
if let Some(hir_id) = hir_id
&& let Some(hir::Node::Ty(ty)) = tcx.hir().find(hir_id)
&& let hir::TyKind::TraitObject([trait_ref, ..], ..) = ty.kind
{
let mut hir_id = hir_id;
while let hir::Node::Ty(ty) = tcx.hir().get_parent(hir_id) {
hir_id = ty.hir_id;
}
if tcx.hir().get_parent(hir_id).fn_sig().is_some() {
// Do not suggest `impl Trait` when dealing with things like super-traits.
err.span_suggestion_verbose(
ty.span.until(trait_ref.span),
"consider using an opaque type instead",
"impl ",
Applicability::MaybeIncorrect,
);
}
}
let mut reported_violations = FxIndexSet::default(); let mut reported_violations = FxIndexSet::default();
let mut multi_span = vec![]; let mut multi_span = vec![];
let mut messages = vec![]; let mut messages = vec![];

View File

@ -816,7 +816,7 @@ impl<'tcx> TypeErrCtxtExt<'tcx> for TypeErrCtxt<'_, 'tcx> {
ty::PredicateKind::ObjectSafe(trait_def_id) => { ty::PredicateKind::ObjectSafe(trait_def_id) => {
let violations = self.tcx.object_safety_violations(trait_def_id); let violations = self.tcx.object_safety_violations(trait_def_id);
report_object_safety_error(self.tcx, span, trait_def_id, violations) report_object_safety_error(self.tcx, span, None, trait_def_id, violations)
} }
ty::PredicateKind::Clause(ty::ClauseKind::WellFormed(ty)) => { ty::PredicateKind::Clause(ty::ClauseKind::WellFormed(ty)) => {
@ -924,7 +924,7 @@ impl<'tcx> TypeErrCtxtExt<'tcx> for TypeErrCtxt<'_, 'tcx> {
TraitNotObjectSafe(did) => { TraitNotObjectSafe(did) => {
let violations = self.tcx.object_safety_violations(did); let violations = self.tcx.object_safety_violations(did);
report_object_safety_error(self.tcx, span, did, violations) report_object_safety_error(self.tcx, span, None, did, violations)
} }
SelectionError::NotConstEvaluatable(NotConstEvaluatable::MentionsInfer) => { SelectionError::NotConstEvaluatable(NotConstEvaluatable::MentionsInfer) => {

View File

@ -323,6 +323,10 @@ LL | || Output = <Self as SVec>::Item> as SVec>::Item,
LL | | LL | |
LL | | > { LL | | > {
| |__^ ...because it uses `Self` as a type parameter | |__^ ...because it uses `Self` as a type parameter
help: consider using an opaque type instead
|
LL | pub fn next<'a, T>(s: &'a mut impl SVec<Item = T, Output = T>) {
| ~~~~
error[E0107]: missing generics for associated type `SVec::Item` error[E0107]: missing generics for associated type `SVec::Item`
--> $DIR/issue-105742.rs:15:21 --> $DIR/issue-105742.rs:15:21

View File

@ -1,9 +1,7 @@
// run-rustfix // run-rustfix
#![deny(bare_trait_objects)] #![deny(bare_trait_objects)]
fn ord_prefer_dot(s: String) -> impl Ord { fn ord_prefer_dot(s: String) -> impl Ord {
//~^ ERROR trait objects without an explicit `dyn` are deprecated //~^ ERROR the trait `Ord` cannot be made into an object
//~| ERROR the trait `Ord` cannot be made into an object
//~| WARNING this is accepted in the current edition (Rust 2015)
(s.starts_with("."), s) (s.starts_with("."), s)
} }
fn main() { fn main() {

View File

@ -1,9 +1,7 @@
// run-rustfix // run-rustfix
#![deny(bare_trait_objects)] #![deny(bare_trait_objects)]
fn ord_prefer_dot(s: String) -> Ord { fn ord_prefer_dot(s: String) -> Ord {
//~^ ERROR trait objects without an explicit `dyn` are deprecated //~^ ERROR the trait `Ord` cannot be made into an object
//~| ERROR the trait `Ord` cannot be made into an object
//~| WARNING this is accepted in the current edition (Rust 2015)
(s.starts_with("."), s) (s.starts_with("."), s)
} }
fn main() { fn main() {

View File

@ -1,21 +1,3 @@
error: trait objects without an explicit `dyn` are deprecated
--> $DIR/bare-trait-dont-suggest-dyn.rs:3:33
|
LL | fn ord_prefer_dot(s: String) -> Ord {
| ^^^
|
= warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021!
= note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2021/warnings-promoted-to-error.html>
note: the lint level is defined here
--> $DIR/bare-trait-dont-suggest-dyn.rs:2:9
|
LL | #![deny(bare_trait_objects)]
| ^^^^^^^^^^^^^^^^^^
help: `Ord` is not object safe, use `impl Ord` to return an opaque type, as long as you return a single underlying type
|
LL | fn ord_prefer_dot(s: String) -> impl Ord {
| ++++
error[E0038]: the trait `Ord` cannot be made into an object error[E0038]: the trait `Ord` cannot be made into an object
--> $DIR/bare-trait-dont-suggest-dyn.rs:3:33 --> $DIR/bare-trait-dont-suggest-dyn.rs:3:33
| |
@ -29,7 +11,11 @@ note: for a trait to be "object safe" it needs to allow building a vtable to all
::: $SRC_DIR/core/src/cmp.rs:LL:COL ::: $SRC_DIR/core/src/cmp.rs:LL:COL
| |
= note: the trait cannot be made into an object because it uses `Self` as a type parameter = note: the trait cannot be made into an object because it uses `Self` as a type parameter
help: consider using an opaque type instead
|
LL | fn ord_prefer_dot(s: String) -> impl Ord {
| ++++
error: aborting due to 2 previous errors error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0038`. For more information about this error, try `rustc --explain E0038`.

View File

@ -11,6 +11,10 @@ LL | trait Baz : Bar<Self> {
| --- ^^^^^^^^^ ...because it uses `Self` as a type parameter | --- ^^^^^^^^^ ...because it uses `Self` as a type parameter
| | | |
| this trait cannot be made into an object... | this trait cannot be made into an object...
help: consider using an opaque type instead
|
LL | fn make_baz<T:Baz>(t: &T) -> &impl Baz {
| ~~~~
error: aborting due to 1 previous error error: aborting due to 1 previous error

View File

@ -14,6 +14,10 @@ LL | pub trait Bar: Foo<Assoc=()> {
| | | ...because it uses `Self` as a type parameter | | | ...because it uses `Self` as a type parameter
| | ...because it uses `Self` as a type parameter | | ...because it uses `Self` as a type parameter
| this trait cannot be made into an object... | this trait cannot be made into an object...
help: consider using an opaque type instead
|
LL | impl Bar
| ~~~~
error: aborting due to 1 previous error error: aborting due to 1 previous error