Skip to content

Commit ce18b9d

Browse files
authored
Unrolled build for rust-lang#133304
Rollup merge of rust-lang#133304 - lqd:issue-132920, r=estebank Revert diagnostics hack to fix ICE 132920 This reverts 8a568d9 from rust-lang#128849 to fix the diagnostics ICE in rust-lang#132920. The hack mentioned in that commit was supposed to be tailored to E277, but that codepath is used actually shared with other errors, e.g. at least the E283 from the linked issue. We may have to eat the slightly worse diagnostics until a non-hacky way to make this error less verbose is implemented (or I guess a different hack specializing even more to E277's structure). Sorry ``@estebank`` 🙏. I can close this if you'd prefer to fix it in a different way. Since it seems unexpected that rust-lang#128849 would impact the repro, here's how the error used to look before that PR. ```console warning: unused import: `minirapier::Ray` --> src/main.rs:2:5 | 2 | use minirapier::Ray; | ^^^^^^^^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default error[E0283]: type annotations needed --> src/main.rs:10:5 | 10 | insert_resource(Res.into()); | ^^^^^^^^^^^^^^^ ---------- type must be known at this point | | | cannot infer type of the type parameter `R` declared on the function `insert_resource` | = note: cannot satisfy `_: Resource` = help: the trait `Resource` is implemented for `Res` note: required by a bound in `insert_resource` --> src/main.rs:4:23 | 4 | fn insert_resource<R: Resource>(_resource: R) {} | ^^^^^^^^ required by this bound in `insert_resource` help: consider specifying the generic argument | 10 | insert_resource::<R>(Res.into()); | +++++ help: consider removing this method call, as the receiver has type `Res` and `Res: Resource` trivially holds | 10 - insert_resource(Res.into()); 10 + insert_resource(Res); ``` And how it looks now without the ICE. ```console warning: unused import: `minirapier::Ray` --> src/main.rs:2:5 | 2 | use minirapier::Ray; | ^^^^^^^^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default error[E0283]: type annotations needed --> src/main.rs:10:5 | 10 | insert_resource(Res.into()); | ^^^^^^^^^^^^^^^ ---------- type must be known at this point | | | cannot infer type of the type parameter `R` declared on the function `insert_resource` | = note: cannot satisfy `_: Resource` note: there are multiple different versions of crate `minibevy` in the dependency graph --> /home/lqd/rust/tmp/minimization/issue-132920/rustc-ice-version-conflict/minibevy_b/src/lib.rs:1:1 | 1 | pub trait Resource {} | ^^^^^^^^^^^^^^^^^^ this is the required trait | ::: src/main.rs:1:5 | 1 | use minibevy::Resource; | -------- one version of crate `minibevy` is used here, as a direct dependency of the current crate 2 | use minirapier::Ray; | ---------- one version of crate `minibevy` is used here, as a dependency of crate `minirapier` | ::: /home/lqd/rust/tmp/minimization/issue-132920/rustc-ice-version-conflict/minibevy_a/src/lib.rs:1:1 | 1 | pub trait Resource {} | ------------------ this is the found trait = help: you can use `cargo tree` to explore your dependency tree note: required by a bound in `insert_resource` --> src/main.rs:4:23 | 4 | fn insert_resource<R: Resource>(_resource: R) {} | ^^^^^^^^ required by this bound in `insert_resource` help: consider specifying the generic argument | 10 | insert_resource::<R>(Res.into()); | +++++ help: consider removing this method call, as the receiver has type `Res` and `Res: Resource` trivially holds | 10 - insert_resource(Res.into()); 10 + insert_resource(Res); | ``` The improvements from rust-lang#128849 are still present and the note about the trait coming from the 2 versions of bevy is more explanatory/helpful than before, albeit a bit verbosely. Fixes rust-lang#132920.
2 parents dd2837e + 764e3e2 commit ce18b9d

File tree

6 files changed

+88
-38
lines changed

6 files changed

+88
-38
lines changed

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

-18
Original file line numberDiff line numberDiff line change
@@ -1803,24 +1803,6 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {
18031803
StringPart::highlighted("cargo tree".to_string()),
18041804
StringPart::normal("` to explore your dependency tree".to_string()),
18051805
]);
1806-
1807-
// FIXME: this is a giant hack for the benefit of this specific diagnostic. Because
1808-
// we're so nested in method calls before the error gets emitted, bubbling a single bit
1809-
// flag informing the top level caller to stop adding extra detail to the diagnostic,
1810-
// would actually be harder to follow. So we do something naughty here: we consume the
1811-
// diagnostic, emit it and leave in its place a "delayed bug" that will continue being
1812-
// modified but won't actually be printed to end users. This *is not ideal*, but allows
1813-
// us to reduce the verbosity of an error that is already quite verbose and increase its
1814-
// specificity. Below we modify the main message as well, in a way that *could* break if
1815-
// the implementation of Diagnostics change significantly, but that would be caught with
1816-
// a make test failure when this diagnostic is tested.
1817-
err.primary_message(format!(
1818-
"{} because the trait comes from a different crate version",
1819-
err.messages[0].0.as_str().unwrap(),
1820-
));
1821-
let diag = err.clone();
1822-
err.downgrade_to_delayed_bug();
1823-
self.tcx.dcx().emit_diagnostic(diag);
18241806
return true;
18251807
}
18261808

tests/run-make/crate-loading/rmake.rs

+26-20
Original file line numberDiff line numberDiff line change
@@ -18,31 +18,37 @@ fn main() {
1818
.extern_("dependency", rust_lib_name("dependency"))
1919
.extern_("dep_2_reexport", rust_lib_name("foo"))
2020
.run_fail()
21-
.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
22-
--> multiple-dep-versions.rs:7:18
23-
|
24-
7 | do_something(Type);
25-
| ^^^^ the trait `Trait` is not implemented for `dep_2_reexport::Type`
26-
|
21+
.assert_stderr_contains(r#"error[E0277]: the trait bound `dep_2_reexport::Type: Trait` is not satisfied
22+
--> multiple-dep-versions.rs:7:18
23+
|
24+
7 | do_something(Type);
25+
| ------------ ^^^^ the trait `Trait` is not implemented for `dep_2_reexport::Type`
26+
| |
27+
| required by a bound introduced by this call
28+
|
2729
note: there are multiple different versions of crate `dependency` in the dependency graph"#)
2830
.assert_stderr_contains(r#"
29-
3 | pub struct Type(pub i32);
30-
| --------------- this type implements the required trait
31-
4 | pub trait Trait {
32-
| ^^^^^^^^^^^^^^^ this is the required trait
31+
3 | pub struct Type(pub i32);
32+
| --------------- this type implements the required trait
33+
4 | pub trait Trait {
34+
| ^^^^^^^^^^^^^^^ this is the required trait
3335
"#)
3436
.assert_stderr_contains(r#"
35-
1 | extern crate dep_2_reexport;
36-
| ---------------------------- one version of crate `dependency` is used here, as a dependency of crate `foo`
37-
2 | extern crate dependency;
38-
| ------------------------ one version of crate `dependency` is used here, as a direct dependency of the current crate"#)
37+
1 | extern crate dep_2_reexport;
38+
| ---------------------------- one version of crate `dependency` is used here, as a dependency of crate `foo`
39+
2 | extern crate dependency;
40+
| ------------------------ one version of crate `dependency` is used here, as a direct dependency of the current crate"#)
3941
.assert_stderr_contains(r#"
40-
3 | pub struct Type;
41-
| --------------- this type doesn't implement the required trait
42-
4 | pub trait Trait {
43-
| --------------- this is the found trait
44-
= note: two types coming from two different versions of the same crate are different types even if they look the same
45-
= help: you can use `cargo tree` to explore your dependency tree"#)
42+
3 | pub struct Type;
43+
| --------------- this type doesn't implement the required trait
44+
4 | pub trait Trait {
45+
| --------------- this is the found trait
46+
= note: two types coming from two different versions of the same crate are different types even if they look the same
47+
= help: you can use `cargo tree` to explore your dependency tree"#)
48+
.assert_stderr_contains(r#"note: required by a bound in `do_something`"#)
49+
.assert_stderr_contains(r#"
50+
12 | pub fn do_something<X: Trait>(_: X) {}
51+
| ^^^^^ required by this bound in `do_something`"#)
4652
.assert_stderr_contains(r#"error[E0599]: no method named `foo` found for struct `dep_2_reexport::Type` in the current scope
4753
--> multiple-dep-versions.rs:8:10
4854
|
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
pub trait Resource {}
2+
pub struct Ray2d;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pub type Ray = minibevy::Ray2d;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
extern crate minibevy;
2+
extern crate minirapier;
3+
4+
use minibevy::Resource;
5+
use minirapier::Ray;
6+
7+
fn insert_resource<R: Resource>(_resource: R) {}
8+
9+
struct Res;
10+
impl Resource for Res {}
11+
12+
fn main() {
13+
insert_resource(Res.into());
14+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
// Non-regression test for issue #132920 where multiple versions of the same crate are present in
2+
// the dependency graph, and an unexpected error in a dependent crate caused an ICE in the
3+
// unsatisfied bounds diagnostics for traits present in multiple crate versions.
4+
//
5+
// Setup:
6+
// - two versions of the same crate: minibevy_a and minibevy_b
7+
// - minirapier: depends on minibevy_a
8+
// - repro: depends on minirapier and minibevy_b
9+
10+
use run_make_support::rustc;
11+
12+
fn main() {
13+
// Prepare dependencies, mimicking a check build with cargo.
14+
rustc()
15+
.input("minibevy.rs")
16+
.crate_name("minibevy")
17+
.crate_type("lib")
18+
.emit("metadata")
19+
.metadata("a")
20+
.extra_filename("-a")
21+
.run();
22+
rustc()
23+
.input("minibevy.rs")
24+
.crate_name("minibevy")
25+
.crate_type("lib")
26+
.emit("metadata")
27+
.metadata("b")
28+
.extra_filename("-b")
29+
.run();
30+
rustc()
31+
.input("minirapier.rs")
32+
.crate_name("minirapier")
33+
.crate_type("lib")
34+
.emit("metadata")
35+
.extern_("minibevy", "libminibevy-a.rmeta")
36+
.run();
37+
38+
// Building the main crate used to ICE here when printing the `type annotations needed` error.
39+
rustc()
40+
.input("repro.rs")
41+
.extern_("minibevy", "libminibevy-b.rmeta")
42+
.extern_("minirapier", "libminirapier.rmeta")
43+
.run_fail()
44+
.assert_stderr_not_contains("error: the compiler unexpectedly panicked. this is a bug");
45+
}

0 commit comments

Comments
 (0)