From a15f36fde650d4549edd852aa876845d4c7953a4 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 1 Mar 2020 11:41:15 -0800 Subject: [PATCH] Update ui tests to nightly-2020-03-01 --- tests/ui/no-display.stderr | 15 ++++++++------- tests/ui/source-enum-not-error.stderr | 23 ++++++++++++++--------- tests/ui/source-struct-not-error.stderr | 20 ++++++++++++-------- 3 files changed, 34 insertions(+), 24 deletions(-) diff --git a/tests/ui/no-display.stderr b/tests/ui/no-display.stderr index 1a3a68e..6a59def 100644 --- a/tests/ui/no-display.stderr +++ b/tests/ui/no-display.stderr @@ -1,8 +1,9 @@ error[E0599]: no method named `as_display` found for reference `&std::thread::Thread` in the current scope - --> $DIR/no-display.rs:5:9 - | -5 | #[error("thread: {thread}")] - | ^^^^^^^^^^^^^^^^^^ method not found in `&std::thread::Thread` - | - = note: the method `as_display` exists but the following trait bounds were not satisfied: - `&std::thread::Thread : thiserror::display::DisplayAsDisplay` + --> $DIR/no-display.rs:5:9 + | +5 | #[error("thread: {thread}")] + | ^^^^^^^^^^^^^^^^^^ method not found in `&std::thread::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::display::DisplayAsDisplay` diff --git a/tests/ui/source-enum-not-error.stderr b/tests/ui/source-enum-not-error.stderr index 3cd75e8..39e96f8 100644 --- a/tests/ui/source-enum-not-error.stderr +++ b/tests/ui/source-enum-not-error.stderr @@ -1,10 +1,15 @@ error[E0599]: no method named `as_dyn_error` found for reference `&std::string::String` in the current scope - --> $DIR/source-enum-not-error.rs:7:9 - | -7 | source: String, - | ^^^^^^ method not found in `&std::string::String` - | - = note: the method `as_dyn_error` exists but the following trait bounds were not satisfied: - `&std::string::String : thiserror::aserror::AsDynError` - `std::string::String : thiserror::aserror::AsDynError` - `str : thiserror::aserror::AsDynError` + --> $DIR/source-enum-not-error.rs:7:9 + | +7 | source: String, + | ^^^^^^ method not found in `&std::string::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::aserror::AsDynError` + `&std::string::String: std::error::Error` + which is required by `&std::string::String: thiserror::aserror::AsDynError` + `str: std::marker::Sized` + which is required by `str: thiserror::aserror::AsDynError` + `str: std::error::Error` + which is required by `str: thiserror::aserror::AsDynError` diff --git a/tests/ui/source-struct-not-error.stderr b/tests/ui/source-struct-not-error.stderr index 43375d6..d8cf2b1 100644 --- a/tests/ui/source-struct-not-error.stderr +++ b/tests/ui/source-struct-not-error.stderr @@ -1,9 +1,13 @@ error[E0599]: no method named `as_dyn_error` found for struct `std::string::String` in the current scope - --> $DIR/source-struct-not-error.rs:6:5 - | -6 | source: String, - | ^^^^^^ method not found in `std::string::String` - | - = note: the method `as_dyn_error` exists but the following trait bounds were not satisfied: - `std::string::String : thiserror::aserror::AsDynError` - `str : thiserror::aserror::AsDynError` + --> $DIR/source-struct-not-error.rs:6:5 + | +6 | source: String, + | ^^^^^^ method not found in `std::string::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::aserror::AsDynError` + `str: std::marker::Sized` + which is required by `str: thiserror::aserror::AsDynError` + `str: std::error::Error` + which is required by `str: thiserror::aserror::AsDynError`