You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Fixesrust-lang#132920.
.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
+
|
27
29
note: there are multiple different versions of crate `dependency` in the dependency graph"#)
28
30
.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
33
35
"#)
34
36
.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"#)
39
41
.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`"#)
46
52
.assert_stderr_contains(r#"error[E0599]: no method named `foo` found for struct `dep_2_reexport::Type` in the current scope
0 commit comments