rust/src/test/ui/derives/derives-span-Debug-tuple-struct.stderr

16 lines
723 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0277]: `Error` doesn't implement `std::fmt::Debug`
--> $DIR/derives-span-Debug-tuple-struct.rs:8:5
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | Error
2018-08-08 07:28:26 -05:00
| ^^^^^ `Error` cannot be formatted using `{:?}`
|
= help: the trait `std::fmt::Debug` is not implemented for `Error`
= note: add `#[derive(Debug)]` or manually implement `std::fmt::Debug`
= note: required because of the requirements on the impl of `std::fmt::Debug` for `&Error`
= note: required for the cast to the object type `dyn std::fmt::Debug`
= note: this error originates in a derive macro (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 07:28:26 -05:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.