From 663d835689e1d0d8102926d7a53eaa697b4e8a3d Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Fri, 4 Sep 2020 23:31:10 -0700 Subject: [PATCH] Update ui tests to nightly-2020-09-05 --- tests/ui/no-display.stderr | 8 ++++---- tests/ui/source-enum-not-error.stderr | 18 +++++++++--------- tests/ui/source-struct-not-error.stderr | 14 +++++++------- 3 files changed, 20 insertions(+), 20 deletions(-) diff --git a/tests/ui/no-display.stderr b/tests/ui/no-display.stderr index b71dd51..4dc7a1d 100644 --- a/tests/ui/no-display.stderr +++ b/tests/ui/no-display.stderr @@ -1,9 +1,9 @@ -error[E0599]: no method named `as_display` found for reference `&std::thread::Thread` in the current scope +error[E0599]: no method named `as_display` found for reference `&Thread` in the current scope --> $DIR/no-display.rs:5:9 | 5 | #[error("thread: {thread}")] - | ^^^^^^^^^^^^^^^^^^ method not found in `&std::thread::Thread` + | ^^^^^^^^^^^^^^^^^^ method not found in `&Thread` | = note: the method `as_display` exists but the following trait bounds were not satisfied: - `std::thread::Thread: std::fmt::Display` - which is required by `&std::thread::Thread: thiserror::private::DisplayAsDisplay` + `Thread: std::fmt::Display` + which is required by `&Thread: DisplayAsDisplay` diff --git a/tests/ui/source-enum-not-error.stderr b/tests/ui/source-enum-not-error.stderr index 7aab6d2..b56cf07 100644 --- a/tests/ui/source-enum-not-error.stderr +++ b/tests/ui/source-enum-not-error.stderr @@ -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` diff --git a/tests/ui/source-struct-not-error.stderr b/tests/ui/source-struct-not-error.stderr index a223847..b085492 100644 --- a/tests/ui/source-struct-not-error.stderr +++ b/tests/ui/source-struct-not-error.stderr @@ -1,13 +1,13 @@ -error[E0599]: no method named `as_dyn_error` found for struct `std::string::String` in the current scope +error[E0599]: no method named `as_dyn_error` found for struct `String` in the current scope --> $DIR/source-struct-not-error.rs:6:5 | 6 | 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` - `str: std::marker::Sized` - which is required by `str: thiserror::private::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`