mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-05 13:57:38 +03:00
Update ui tests to nightly-2020-09-05
This commit is contained in:
parent
2a7b7abbb7
commit
663d835689
3 changed files with 20 additions and 20 deletions
|
@ -1,15 +1,15 @@
|
|||
error[E0599]: no method named `as_dyn_error` found for reference `&std::string::String` in the current scope
|
||||
error[E0599]: no method named `as_dyn_error` found for reference `&String` in the current scope
|
||||
--> $DIR/source-enum-not-error.rs:7:9
|
||||
|
|
||||
7 | source: String,
|
||||
| ^^^^^^ method not found in `&std::string::String`
|
||||
| ^^^^^^ method not found in `&String`
|
||||
|
|
||||
= note: the method `as_dyn_error` exists but the following trait bounds were not satisfied:
|
||||
`std::string::String: std::error::Error`
|
||||
which is required by `std::string::String: thiserror::private::AsDynError`
|
||||
`&std::string::String: std::error::Error`
|
||||
which is required by `&std::string::String: thiserror::private::AsDynError`
|
||||
`str: std::marker::Sized`
|
||||
which is required by `str: thiserror::private::AsDynError`
|
||||
`String: std::error::Error`
|
||||
which is required by `String: AsDynError`
|
||||
`&String: std::error::Error`
|
||||
which is required by `&String: AsDynError`
|
||||
`str: Sized`
|
||||
which is required by `str: AsDynError`
|
||||
`str: std::error::Error`
|
||||
which is required by `str: thiserror::private::AsDynError`
|
||||
which is required by `str: AsDynError`
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue