Revert "Remove less relevant info from diagnostic"
This reverts commit 8a568d9f15
.
This commit is contained in:
parent
91486607e3
commit
764e3e264f
2 changed files with 26 additions and 38 deletions
|
@ -1804,24 +1804,6 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {
|
||||||
StringPart::highlighted("cargo tree".to_string()),
|
StringPart::highlighted("cargo tree".to_string()),
|
||||||
StringPart::normal("` to explore your dependency tree".to_string()),
|
StringPart::normal("` to explore your dependency tree".to_string()),
|
||||||
]);
|
]);
|
||||||
|
|
||||||
// FIXME: this is a giant hack for the benefit of this specific diagnostic. Because
|
|
||||||
// we're so nested in method calls before the error gets emitted, bubbling a single bit
|
|
||||||
// flag informing the top level caller to stop adding extra detail to the diagnostic,
|
|
||||||
// would actually be harder to follow. So we do something naughty here: we consume the
|
|
||||||
// diagnostic, emit it and leave in its place a "delayed bug" that will continue being
|
|
||||||
// modified but won't actually be printed to end users. This *is not ideal*, but allows
|
|
||||||
// us to reduce the verbosity of an error that is already quite verbose and increase its
|
|
||||||
// specificity. Below we modify the main message as well, in a way that *could* break if
|
|
||||||
// the implementation of Diagnostics change significantly, but that would be caught with
|
|
||||||
// a make test failure when this diagnostic is tested.
|
|
||||||
err.primary_message(format!(
|
|
||||||
"{} because the trait comes from a different crate version",
|
|
||||||
err.messages[0].0.as_str().unwrap(),
|
|
||||||
));
|
|
||||||
let diag = err.clone();
|
|
||||||
err.downgrade_to_delayed_bug();
|
|
||||||
self.tcx.dcx().emit_diagnostic(diag);
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -18,11 +18,13 @@ fn main() {
|
||||||
.extern_("dependency", rust_lib_name("dependency"))
|
.extern_("dependency", rust_lib_name("dependency"))
|
||||||
.extern_("dep_2_reexport", rust_lib_name("foo"))
|
.extern_("dep_2_reexport", rust_lib_name("foo"))
|
||||||
.run_fail()
|
.run_fail()
|
||||||
.assert_stderr_contains(r#"error[E0277]: the trait bound `dep_2_reexport::Type: Trait` is not satisfied because the trait comes from a different crate version
|
.assert_stderr_contains(r#"error[E0277]: the trait bound `dep_2_reexport::Type: Trait` is not satisfied
|
||||||
--> multiple-dep-versions.rs:7:18
|
--> multiple-dep-versions.rs:7:18
|
||||||
|
|
|
|
||||||
7 | do_something(Type);
|
7 | do_something(Type);
|
||||||
| ^^^^ the trait `Trait` is not implemented for `dep_2_reexport::Type`
|
| ------------ ^^^^ the trait `Trait` is not implemented for `dep_2_reexport::Type`
|
||||||
|
| |
|
||||||
|
| required by a bound introduced by this call
|
||||||
|
|
|
|
||||||
note: there are multiple different versions of crate `dependency` in the dependency graph"#)
|
note: there are multiple different versions of crate `dependency` in the dependency graph"#)
|
||||||
.assert_stderr_contains(r#"
|
.assert_stderr_contains(r#"
|
||||||
|
@ -43,6 +45,10 @@ note: there are multiple different versions of crate `dependency` in the depende
|
||||||
| --------------- this is the found trait
|
| --------------- this is the found trait
|
||||||
= note: two types coming from two different versions of the same crate are different types even if they look the same
|
= note: two types coming from two different versions of the same crate are different types even if they look the same
|
||||||
= help: you can use `cargo tree` to explore your dependency tree"#)
|
= help: you can use `cargo tree` to explore your dependency tree"#)
|
||||||
|
.assert_stderr_contains(r#"note: required by a bound in `do_something`"#)
|
||||||
|
.assert_stderr_contains(r#"
|
||||||
|
12 | pub fn do_something<X: Trait>(_: X) {}
|
||||||
|
| ^^^^^ required by this bound in `do_something`"#)
|
||||||
.assert_stderr_contains(r#"error[E0599]: no method named `foo` found for struct `dep_2_reexport::Type` in the current scope
|
.assert_stderr_contains(r#"error[E0599]: no method named `foo` found for struct `dep_2_reexport::Type` in the current scope
|
||||||
--> multiple-dep-versions.rs:8:10
|
--> multiple-dep-versions.rs:8:10
|
||||||
|
|
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue