rust/src/test/ui/proc-macro/illegal-proc-macro-derive-use.stderr

15 lines
457 B
Plaintext
Raw Normal View History

error: the `#[proc_macro_derive]` attribute is only usable with crates of the `proc-macro` crate type
--> $DIR/illegal-proc-macro-derive-use.rs:13:1
|
LL | #[proc_macro_derive(Foo)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^
error: the `#[proc_macro_derive]` attribute may only be used on bare functions
--> $DIR/illegal-proc-macro-derive-use.rs:20:1
|
LL | #[proc_macro_derive(Foo)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to 2 previous errors