rust/tests/ui/coercion/coerce-issue-49593-box-never.nofallback.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
812 B
Plaintext
Raw Normal View History

2021-09-17 08:59:50 -05:00
error[E0277]: the trait bound `(): std::error::Error` is not satisfied
2024-06-17 04:21:25 -05:00
--> $DIR/coerce-issue-49593-box-never.rs:18:5
2021-09-17 08:59:50 -05:00
|
LL | Box::<_ /* ! */>::new(x)
| ^^^^^^^^^^^^^^^^^^^^^^^^ the trait `std::error::Error` is not implemented for `()`
2021-09-17 08:59:50 -05:00
|
2023-05-10 21:10:56 -05:00
= note: required for the cast from `Box<()>` to `Box<(dyn std::error::Error + 'static)>`
2021-09-17 08:59:50 -05:00
error[E0277]: the trait bound `(): std::error::Error` is not satisfied
2024-06-17 04:21:25 -05:00
--> $DIR/coerce-issue-49593-box-never.rs:24:5
2021-09-17 08:59:50 -05:00
|
2024-06-17 04:21:25 -05:00
LL | raw_ptr_box::<_ /* ! */>(x)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `std::error::Error` is not implemented for `()`
2021-09-17 08:59:50 -05:00
|
2023-05-10 21:10:56 -05:00
= note: required for the cast from `*mut ()` to `*mut (dyn std::error::Error + 'static)`
2021-09-17 08:59:50 -05:00
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0277`.