2025-07-07 20:48:51 +02:00
|
|
|
error[E0565]: malformed `proc_macro` attribute input
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/invalid-attributes.rs:10:1
|
2018-07-11 15:49:23 -07:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | #[proc_macro = "test"]
|
2025-07-07 20:48:51 +02:00
|
|
|
| ^^^^^^^^^^^^^--------^
|
|
|
|
|
| | |
|
|
|
|
|
| | didn't expect any arguments here
|
|
|
|
|
| help: must be of the form: `#[proc_macro]`
|
2018-07-11 15:49:23 -07:00
|
|
|
|
2025-07-07 20:48:51 +02:00
|
|
|
error[E0565]: malformed `proc_macro` attribute input
|
|
|
|
|
--> $DIR/invalid-attributes.rs:15:1
|
2018-07-11 15:49:23 -07:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | #[proc_macro()]
|
2025-07-07 20:48:51 +02:00
|
|
|
| ^^^^^^^^^^^^--^
|
|
|
|
|
| | |
|
|
|
|
|
| | didn't expect any arguments here
|
|
|
|
|
| help: must be of the form: `#[proc_macro]`
|
2018-07-11 15:49:23 -07:00
|
|
|
|
2025-07-07 20:48:51 +02:00
|
|
|
error[E0565]: malformed `proc_macro` attribute input
|
|
|
|
|
--> $DIR/invalid-attributes.rs:20:1
|
2018-07-11 15:49:23 -07:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | #[proc_macro(x)]
|
2025-07-07 20:48:51 +02:00
|
|
|
| ^^^^^^^^^^^^---^
|
|
|
|
|
| | |
|
|
|
|
|
| | didn't expect any arguments here
|
|
|
|
|
| help: must be of the form: `#[proc_macro]`
|
2018-07-11 15:49:23 -07:00
|
|
|
|
2025-07-07 20:48:51 +02:00
|
|
|
error[E0565]: malformed `proc_macro_attribute` attribute input
|
|
|
|
|
--> $DIR/invalid-attributes.rs:25:1
|
2018-07-11 15:49:23 -07:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | #[proc_macro_attribute = "test"]
|
2025-07-07 20:48:51 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^--------^
|
|
|
|
|
| | |
|
|
|
|
|
| | didn't expect any arguments here
|
|
|
|
|
| help: must be of the form: `#[proc_macro_attribute]`
|
2018-07-11 15:49:23 -07:00
|
|
|
|
2025-07-07 20:48:51 +02:00
|
|
|
error[E0565]: malformed `proc_macro_attribute` attribute input
|
|
|
|
|
--> $DIR/invalid-attributes.rs:30:1
|
2018-07-11 15:49:23 -07:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | #[proc_macro_attribute()]
|
2025-07-07 20:48:51 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^--^
|
|
|
|
|
| | |
|
|
|
|
|
| | didn't expect any arguments here
|
|
|
|
|
| help: must be of the form: `#[proc_macro_attribute]`
|
2018-07-11 15:49:23 -07:00
|
|
|
|
2025-07-07 20:48:51 +02:00
|
|
|
error[E0565]: malformed `proc_macro_attribute` attribute input
|
|
|
|
|
--> $DIR/invalid-attributes.rs:35:1
|
2018-07-11 15:49:23 -07:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | #[proc_macro_attribute(x)]
|
2025-07-07 20:48:51 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^---^
|
|
|
|
|
| | |
|
|
|
|
|
| | didn't expect any arguments here
|
|
|
|
|
| help: must be of the form: `#[proc_macro_attribute]`
|
2018-07-11 15:49:23 -07:00
|
|
|
|
|
|
|
|
error: aborting due to 6 previous errors
|
|
|
|
|
|
2025-07-07 20:48:51 +02:00
|
|
|
For more information about this error, try `rustc --explain E0565`.
|