Update ui tests to nightly-2020-01-11

This commit is contained in:
David Tolnay 2020-01-11 16:33:19 -08:00
parent d1367a8745
commit ff9524e1fd
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82
3 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
error[E0599]: no method named `as_display` found for type `&std::thread::Thread` in the current scope
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}")]

View file

@ -1,4 +1,4 @@
error[E0599]: no method named `as_dyn_error` found for type `&std::string::String` in the current scope
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,

View file

@ -1,4 +1,4 @@
error[E0599]: no method named `as_dyn_error` found for type `std::string::String` in the current scope
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,