about summary refs log tree commit diff
path: root/src/test/ui/compile-fail-migration/derives-span-Debug-enum-struct-variant.stderr
blob: f5939a2e937d9c2da22fc60d439e31a30bdf052e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0277]: `Error` doesn't implement `std::fmt::Debug`
  --> $DIR/derives-span-Debug-enum-struct-variant.rs:19:6
   |
LL |      x: Error //~ ERROR
   |      ^^^^^^^^ `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`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0277`.