Update to nightly-2020-04-20

This commit is contained in:
David Tolnay 2023-12-15 10:06:05 -08:00
parent 4fe306f5c3
commit 65f7773cca
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
1 changed files with 5 additions and 0 deletions

View File

@ -4,5 +4,10 @@ error[E0277]: `MyError` doesn't implement `std::fmt::Display`
4 | pub enum MyError {
| ^^^^^^^^^^^^^^^^ `MyError` cannot be formatted with the default formatter
|
::: $RUST/src/libstd/error.rs
|
| pub trait Error: Debug + Display {
| ------- required by this bound in `std::error::Error`
|
= help: the trait `std::fmt::Display` is not implemented for `MyError`
= note: in format strings you may be able to use `{:?}` (or {:#?} for pretty-print) instead