mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-05 05:47:39 +03:00
Update ui test suite to nightly-2024-01-31
This commit is contained in:
parent
77d0af46dd
commit
c7c75470ec
8 changed files with 8 additions and 34 deletions
|
@ -2,10 +2,7 @@ error[E0599]: the method `as_dyn_error` exists for reference `&NotError`, but it
|
||||||
--> tests/ui/source-enum-not-error.rs:9:14
|
--> tests/ui/source-enum-not-error.rs:9:14
|
||||||
|
|
|
|
||||||
4 | pub struct NotError;
|
4 | pub struct NotError;
|
||||||
| -------------------
|
| ------------------- doesn't satisfy `NotError: AsDynError<'_>` or `NotError: std::error::Error`
|
||||||
| |
|
|
||||||
| doesn't satisfy `NotError: AsDynError<'_>`
|
|
||||||
| doesn't satisfy `NotError: std::error::Error`
|
|
||||||
...
|
...
|
||||||
9 | Broken { source: NotError },
|
9 | Broken { source: NotError },
|
||||||
| ^^^^^^ method cannot be called on `&NotError` due to unsatisfied trait bounds
|
| ^^^^^^ method cannot be called on `&NotError` due to unsatisfied trait bounds
|
||||||
|
|
|
@ -2,10 +2,7 @@ error[E0599]: the method `as_dyn_error` exists for reference `&NotError`, but it
|
||||||
--> tests/ui/source-enum-unnamed-field-not-error.rs:9:14
|
--> tests/ui/source-enum-unnamed-field-not-error.rs:9:14
|
||||||
|
|
|
|
||||||
4 | pub struct NotError;
|
4 | pub struct NotError;
|
||||||
| -------------------
|
| ------------------- doesn't satisfy `NotError: AsDynError<'_>` or `NotError: std::error::Error`
|
||||||
| |
|
|
||||||
| doesn't satisfy `NotError: AsDynError<'_>`
|
|
||||||
| doesn't satisfy `NotError: std::error::Error`
|
|
||||||
...
|
...
|
||||||
9 | Broken(#[source] NotError),
|
9 | Broken(#[source] NotError),
|
||||||
| ^^^^^^ method cannot be called on `&NotError` due to unsatisfied trait bounds
|
| ^^^^^^ method cannot be called on `&NotError` due to unsatisfied trait bounds
|
||||||
|
|
|
@ -2,11 +2,7 @@ error[E0599]: the method `as_dyn_error` exists for struct `NotError`, but its tr
|
||||||
--> tests/ui/source-struct-not-error.rs:9:5
|
--> tests/ui/source-struct-not-error.rs:9:5
|
||||||
|
|
|
|
||||||
4 | struct NotError;
|
4 | struct NotError;
|
||||||
| ---------------
|
| --------------- method `as_dyn_error` not found for this struct because it doesn't satisfy `NotError: AsDynError<'_>` or `NotError: std::error::Error`
|
||||||
| |
|
|
||||||
| method `as_dyn_error` not found for this struct
|
|
||||||
| doesn't satisfy `NotError: AsDynError<'_>`
|
|
||||||
| doesn't satisfy `NotError: std::error::Error`
|
|
||||||
...
|
...
|
||||||
9 | source: NotError,
|
9 | source: NotError,
|
||||||
| ^^^^^^ method cannot be called on `NotError` due to unsatisfied trait bounds
|
| ^^^^^^ method cannot be called on `NotError` due to unsatisfied trait bounds
|
||||||
|
|
|
@ -2,11 +2,7 @@ error[E0599]: the method `as_dyn_error` exists for struct `NotError`, but its tr
|
||||||
--> tests/ui/source-struct-unnamed-field-not-error.rs:8:26
|
--> tests/ui/source-struct-unnamed-field-not-error.rs:8:26
|
||||||
|
|
|
|
||||||
4 | struct NotError;
|
4 | struct NotError;
|
||||||
| ---------------
|
| --------------- method `as_dyn_error` not found for this struct because it doesn't satisfy `NotError: AsDynError<'_>` or `NotError: std::error::Error`
|
||||||
| |
|
|
||||||
| method `as_dyn_error` not found for this struct
|
|
||||||
| doesn't satisfy `NotError: AsDynError<'_>`
|
|
||||||
| doesn't satisfy `NotError: std::error::Error`
|
|
||||||
...
|
...
|
||||||
8 | pub struct ErrorStruct(#[source] NotError);
|
8 | pub struct ErrorStruct(#[source] NotError);
|
||||||
| ^^^^^^ method cannot be called on `NotError` due to unsatisfied trait bounds
|
| ^^^^^^ method cannot be called on `NotError` due to unsatisfied trait bounds
|
||||||
|
|
|
@ -7,10 +7,7 @@ error[E0599]: the method `as_dyn_error` exists for reference `&String`, but its
|
||||||
::: $RUST/alloc/src/string.rs
|
::: $RUST/alloc/src/string.rs
|
||||||
|
|
|
|
||||||
| pub struct String {
|
| pub struct String {
|
||||||
| -----------------
|
| ----------------- doesn't satisfy `String: AsDynError<'_>` or `String: std::error::Error`
|
||||||
| |
|
|
||||||
| doesn't satisfy `String: AsDynError<'_>`
|
|
||||||
| doesn't satisfy `String: std::error::Error`
|
|
||||||
|
|
|
|
||||||
= note: the following trait bounds were not satisfied:
|
= note: the following trait bounds were not satisfied:
|
||||||
`String: std::error::Error`
|
`String: std::error::Error`
|
||||||
|
|
|
@ -7,10 +7,7 @@ error[E0599]: the method `as_dyn_error` exists for reference `&String`, but its
|
||||||
::: $RUST/alloc/src/string.rs
|
::: $RUST/alloc/src/string.rs
|
||||||
|
|
|
|
||||||
| pub struct String {
|
| pub struct String {
|
||||||
| -----------------
|
| ----------------- doesn't satisfy `String: AsDynError<'_>` or `String: std::error::Error`
|
||||||
| |
|
|
||||||
| doesn't satisfy `String: AsDynError<'_>`
|
|
||||||
| doesn't satisfy `String: std::error::Error`
|
|
||||||
|
|
|
|
||||||
= note: the following trait bounds were not satisfied:
|
= note: the following trait bounds were not satisfied:
|
||||||
`String: std::error::Error`
|
`String: std::error::Error`
|
||||||
|
|
|
@ -7,10 +7,7 @@ error[E0599]: the method `as_dyn_error` exists for struct `String`, but its trai
|
||||||
::: $RUST/alloc/src/string.rs
|
::: $RUST/alloc/src/string.rs
|
||||||
|
|
|
|
||||||
| pub struct String {
|
| pub struct String {
|
||||||
| -----------------
|
| ----------------- doesn't satisfy `String: AsDynError<'_>` or `String: std::error::Error`
|
||||||
| |
|
|
||||||
| doesn't satisfy `String: AsDynError<'_>`
|
|
||||||
| doesn't satisfy `String: std::error::Error`
|
|
||||||
|
|
|
|
||||||
= note: the following trait bounds were not satisfied:
|
= note: the following trait bounds were not satisfied:
|
||||||
`String: std::error::Error`
|
`String: std::error::Error`
|
||||||
|
|
|
@ -7,10 +7,7 @@ error[E0599]: the method `as_dyn_error` exists for struct `String`, but its trai
|
||||||
::: $RUST/alloc/src/string.rs
|
::: $RUST/alloc/src/string.rs
|
||||||
|
|
|
|
||||||
| pub struct String {
|
| pub struct String {
|
||||||
| -----------------
|
| ----------------- doesn't satisfy `String: AsDynError<'_>` or `String: std::error::Error`
|
||||||
| |
|
|
||||||
| doesn't satisfy `String: AsDynError<'_>`
|
|
||||||
| doesn't satisfy `String: std::error::Error`
|
|
||||||
|
|
|
|
||||||
= note: the following trait bounds were not satisfied:
|
= note: the following trait bounds were not satisfied:
|
||||||
`String: std::error::Error`
|
`String: std::error::Error`
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue