rust/tests/ui/proc-macro/macros-in-extern-derive.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
371 B
Plaintext
Raw Normal View History

error[E0774]: `derive` may only be applied to `struct`s, `enum`s and `union`s
--> $DIR/macros-in-extern-derive.rs:2:5
|
LL | #[derive(Copy)]
| ^^^^^^^^^^^^^^^ not applicable here
LL | fn f();
| ------- not a `struct`, `enum` or `union`
error: aborting due to previous error
2020-09-05 12:55:15 +00:00
For more information about this error, try `rustc --explain E0774`.