-
-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
29 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,31 @@ | ||
error[E0599]: the method `anyhow_kind` exists for reference `&Error`, but its trait bounds were not satisfied | ||
--> tests/ui/no-impl.rs:7:13 | ||
| | ||
4 | struct Error; | ||
| ------------ | ||
| | | ||
| doesn't satisfy `Error: Into<anyhow::Error>` | ||
| doesn't satisfy `Error: anyhow::kind::TraitKind` | ||
| doesn't satisfy `Error: std::fmt::Display` | ||
--> tests/ui/no-impl.rs:7:13 | ||
| | ||
4 | struct Error; | ||
| ------------ | ||
| | | ||
| doesn't satisfy `Error: Into<anyhow::Error>` | ||
| doesn't satisfy `Error: anyhow::kind::TraitKind` | ||
| doesn't satisfy `Error: std::fmt::Display` | ||
... | ||
7 | let _ = anyhow!(Error); | ||
| ^^^^^^^^^^^^^^ method cannot be called on `&Error` due to unsatisfied trait bounds | ||
| | ||
= note: the following trait bounds were not satisfied: | ||
`Error: Into<anyhow::Error>` | ||
which is required by `Error: anyhow::kind::TraitKind` | ||
`Error: std::fmt::Display` | ||
which is required by `&Error: anyhow::kind::AdhocKind` | ||
`&Error: Into<anyhow::Error>` | ||
which is required by `&Error: anyhow::kind::TraitKind` | ||
7 | let _ = anyhow!(Error); | ||
| ^^^^^^^^^^^^^^ method cannot be called on `&Error` due to unsatisfied trait bounds | ||
| | ||
= note: the following trait bounds were not satisfied: | ||
`Error: Into<anyhow::Error>` | ||
which is required by `Error: anyhow::kind::TraitKind` | ||
`Error: std::fmt::Display` | ||
which is required by `&Error: anyhow::kind::AdhocKind` | ||
`&Error: Into<anyhow::Error>` | ||
which is required by `&Error: anyhow::kind::TraitKind` | ||
note: the following traits must be implemented | ||
--> $RUST/core/src/fmt/mod.rs | ||
| | ||
| pub trait Display { | ||
| ^^^^^^^^^^^^^^^^^ | ||
| | ||
::: $RUST/core/src/convert/mod.rs | ||
| | ||
| pub trait Into<T>: Sized { | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^ | ||
= note: this error originates in the macro `anyhow` (in Nightly builds, run with -Z macro-backtrace for more info) | ||
--> $RUST/core/src/fmt/mod.rs | ||
| | ||
| pub trait Display { | ||
| ^^^^^^^^^^^^^^^^^ | ||
| | ||
::: $RUST/core/src/convert/mod.rs | ||
| | ||
| pub trait Into<T>: Sized { | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^ | ||
= note: this error originates in the macro `anyhow` (in Nightly builds, run with -Z macro-backtrace for more info) |