Update to nightly-2021-08-18

This commit is contained in:
David Tolnay 2023-12-15 10:25:01 -08:00
parent 34e4333af7
commit 2fe64972de
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
1 changed files with 5 additions and 5 deletions

View File

@ -4,10 +4,10 @@ error[E0277]: `MyError` doesn't implement `std::fmt::Display`
4 | pub enum MyError {
| ^^^^^^^^^^^^^^^^ `MyError` cannot be formatted with the default formatter
|
::: $RUST/std/src/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
note: required by a bound in `std::error::Error`
--> $RUST/std/src/error.rs
|
| pub trait Error: Debug + Display {
| ^^^^^^^ required by this bound in `std::error::Error`