summary refs log tree commit diff
path: root/src/test/ui/derives/derives-span-Debug-enum-struct-variant.stderr
blob: 64caba8e80dca021a5634816652cb73957cff2ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0277]: `Error` doesn't implement `Debug`
  --> $DIR/derives-span-Debug-enum-struct-variant.rs:9:6
   |
LL |      x: Error
   |      ^^^^^^^^ `Error` cannot be formatted using `{:?}`
   |
   = help: the trait `Debug` is not implemented for `Error`
   = note: add `#[derive(Debug)]` or manually implement `Debug`
   = note: required because of the requirements on the impl of `Debug` for `&Error`
   = note: required for the cast to the object type `dyn Debug`
   = note: this error originates in a derive macro (in Nightly builds, run with -Z macro-backtrace for more info)

error: aborting due to previous error

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