]> git.lizzy.rs Git - rust.git/blob - tests/ui/derives/derives-span-Default-tuple-struct.stderr
Auto merge of #107197 - aliemjay:patch-2, r=jackh726
[rust.git] / tests / ui / derives / derives-span-Default-tuple-struct.stderr
1 error[E0277]: the trait bound `Error: Default` is not satisfied
2   --> $DIR/derives-span-Default-tuple-struct.rs:8:5
3    |
4 LL | #[derive(Default)]
5    |          ------- in this derive macro expansion
6 LL | struct Struct(
7 LL |     Error
8    |     ^^^^^ the trait `Default` is not implemented for `Error`
9    |
10    = note: this error originates in the derive macro `Default` (in Nightly builds, run with -Z macro-backtrace for more info)
11 help: consider annotating `Error` with `#[derive(Default)]`
12    |
13 LL | #[derive(Default)]
14    |
15
16 error: aborting due to previous error
17
18 For more information about this error, try `rustc --explain E0277`.