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

9 lines
300 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
2018-12-25 09:56:47 -06:00
--> $DIR/issue-36617.rs:1:1
2018-07-15 16:11:54 -05:00
|
LL | #![derive(Copy)] //~ ERROR `derive` may only be applied to structs, enums and unions
| ^^^^^^^^^^^^^^^^ help: try an outer attribute: `#[derive(Copy)]`
error: aborting due to previous error