Skip to content

Commit b1688b4

Browse files
committed
Avoid ICE: Check diagnostic is error before downgrading
Fix #119633.
1 parent 88189a7 commit b1688b4

File tree

5 files changed

+99
-3
lines changed

5 files changed

+99
-3
lines changed

compiler/rustc_hir_analysis/src/astconv/lint.rs

+5-3
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ impl<'o, 'tcx> dyn AstConv<'tcx> + 'o {
122122
],
123123
Applicability::MachineApplicable,
124124
);
125-
} else {
125+
} else if diag.is_error() {
126126
// We'll emit the object safety error already, with a structured suggestion.
127127
diag.downgrade_to_delayed_bug();
128128
}
@@ -148,8 +148,10 @@ impl<'o, 'tcx> dyn AstConv<'tcx> + 'o {
148148
}
149149
if !is_object_safe {
150150
diag.note(format!("`{trait_name}` it is not object safe, so it can't be `dyn`"));
151-
// We'll emit the object safety error already, with a structured suggestion.
152-
diag.downgrade_to_delayed_bug();
151+
if diag.is_error() {
152+
// We'll emit the object safety error already, with a structured suggestion.
153+
diag.downgrade_to_delayed_bug();
154+
}
153155
} else {
154156
let sugg = if let hir::TyKind::TraitObject([_, _, ..], _, _) = self_ty.kind {
155157
// There are more than one trait bound, we need surrounding parentheses.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
fn id<F>(f: Copy) -> usize {
2+
//~^ WARN trait objects without an explicit `dyn` are deprecated
3+
//~| WARN this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021!
4+
//~| WARN trait objects without an explicit `dyn` are deprecated
5+
//~| WARN this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021!
6+
//~| ERROR the trait `Copy` cannot be made into an object
7+
f()
8+
}
9+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
warning: trait objects without an explicit `dyn` are deprecated
2+
--> $DIR/avoid-ice-on-warning-2.rs:1:13
3+
|
4+
LL | fn id<F>(f: Copy) -> usize {
5+
| ^^^^
6+
|
7+
= warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021!
8+
= note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2021/warnings-promoted-to-error.html>
9+
= note: `Copy` it is not object safe, so it can't be `dyn`
10+
= note: `#[warn(bare_trait_objects)]` on by default
11+
help: use a new generic type parameter, constrained by `Copy`
12+
|
13+
LL | fn id<F, T: Copy>(f: T) -> usize {
14+
| +++++++++ ~
15+
help: you can also use an opaque type, but users won't be able to specify the type parameter when calling the `fn`, having to rely exclusively on type inference
16+
|
17+
LL | fn id<F>(f: impl Copy) -> usize {
18+
| ++++
19+
20+
warning: trait objects without an explicit `dyn` are deprecated
21+
--> $DIR/avoid-ice-on-warning-2.rs:1:13
22+
|
23+
LL | fn id<F>(f: Copy) -> usize {
24+
| ^^^^
25+
|
26+
= warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021!
27+
= note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2021/warnings-promoted-to-error.html>
28+
= note: `Copy` it is not object safe, so it can't be `dyn`
29+
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
30+
help: use a new generic type parameter, constrained by `Copy`
31+
|
32+
LL | fn id<F, T: Copy>(f: T) -> usize {
33+
| +++++++++ ~
34+
help: you can also use an opaque type, but users won't be able to specify the type parameter when calling the `fn`, having to rely exclusively on type inference
35+
|
36+
LL | fn id<F>(f: impl Copy) -> usize {
37+
| ++++
38+
39+
error[E0038]: the trait `Copy` cannot be made into an object
40+
--> $DIR/avoid-ice-on-warning-2.rs:1:13
41+
|
42+
LL | fn id<F>(f: Copy) -> usize {
43+
| ^^^^ `Copy` cannot be made into an object
44+
|
45+
= note: the trait cannot be made into an object because it requires `Self: Sized`
46+
= note: for a trait to be "object safe" it needs to allow building a vtable to allow the call to be resolvable dynamically; for more information visit <https://doc.rust-lang.org/reference/items/traits.html#object-safety>
47+
48+
error: aborting due to 1 previous error; 2 warnings emitted
49+
50+
For more information about this error, try `rustc --explain E0038`.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
fn call_this<F>(f: F) : Fn(&str) + call_that {}
2+
//~^ ERROR return types are denoted using `->`
3+
//~| ERROR cannot find trait `call_that` in this scope
4+
//~| WARN trait objects without an explicit `dyn` are deprecated
5+
//~| WARN this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021!
6+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
error: return types are denoted using `->`
2+
--> $DIR/avoid-ice-on-warning.rs:1:23
3+
|
4+
LL | fn call_this<F>(f: F) : Fn(&str) + call_that {}
5+
| ^ help: use `->` instead
6+
7+
error[E0405]: cannot find trait `call_that` in this scope
8+
--> $DIR/avoid-ice-on-warning.rs:1:36
9+
|
10+
LL | fn call_this<F>(f: F) : Fn(&str) + call_that {}
11+
| ^^^^^^^^^ not found in this scope
12+
13+
warning: trait objects without an explicit `dyn` are deprecated
14+
--> $DIR/avoid-ice-on-warning.rs:1:25
15+
|
16+
LL | fn call_this<F>(f: F) : Fn(&str) + call_that {}
17+
| ^^^^^^^^^^^^^^^^^^^^
18+
|
19+
= warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021!
20+
= note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2021/warnings-promoted-to-error.html>
21+
= note: `#[warn(bare_trait_objects)]` on by default
22+
help: `Fn(&str) + call_that` is not object safe, use `impl Fn(&str) + call_that` to return an opaque type, as long as you return a single underlying type
23+
|
24+
LL | fn call_this<F>(f: F) : impl Fn(&str) + call_that {}
25+
| ++++
26+
27+
error: aborting due to 2 previous errors; 1 warning emitted
28+
29+
For more information about this error, try `rustc --explain E0405`.

0 commit comments

Comments
 (0)