rust/src/test/ui/issues/issue-43023.stderr

21 lines
708 B
Plaintext
Raw Normal View History

2018-07-15 16:11:54 -05:00
error: `derive` may only be applied to structs, enums and unions
--> $DIR/issue-43023.rs:14:5
|
LL | #[derive(Debug)] //~ ERROR `derive` may only be applied to structs, enums and unions
| ^^^^^^^^^^^^^^^^
error: `derive` may only be applied to structs, enums and unions
--> $DIR/issue-43023.rs:21:5
|
LL | #[derive(Debug)] //~ ERROR `derive` may only be applied to structs, enums and unions
| ^^^^^^^^^^^^^^^^
error: `derive` may only be applied to structs, enums and unions
--> $DIR/issue-43023.rs:26:5
|
LL | #[derive(Debug)] //~ ERROR `derive` may only be applied to structs, enums and unions
| ^^^^^^^^^^^^^^^^
error: aborting due to 3 previous errors