2025-06-24 01:49:26 +03:00
|
|
|
error[E0565]: malformed `marker` attribute input
|
2019-02-25 22:40:44 +03:00
|
|
|
--> $DIR/marker-attribute-with-values.rs:3:1
|
2018-09-03 02:17:20 -07:00
|
|
|
|
|
|
|
|
|
LL | #[marker(always)]
|
2025-06-24 01:49:26 +03:00
|
|
|
| ^^^^^^^^--------^
|
|
|
|
|
| | |
|
|
|
|
|
| | didn't expect any arguments here
|
|
|
|
|
| help: must be of the form: `#[marker]`
|
2018-09-03 02:17:20 -07:00
|
|
|
|
2025-06-24 01:49:26 +03:00
|
|
|
error[E0565]: malformed `marker` attribute input
|
2019-05-21 17:47:23 -07:00
|
|
|
--> $DIR/marker-attribute-with-values.rs:6:1
|
2018-09-03 02:17:20 -07:00
|
|
|
|
|
|
|
|
|
LL | #[marker("never")]
|
2025-06-24 01:49:26 +03:00
|
|
|
| ^^^^^^^^---------^
|
|
|
|
|
| | |
|
|
|
|
|
| | didn't expect any arguments here
|
|
|
|
|
| help: must be of the form: `#[marker]`
|
2018-09-03 02:17:20 -07:00
|
|
|
|
2025-06-24 01:49:26 +03:00
|
|
|
error[E0565]: malformed `marker` attribute input
|
2019-05-21 17:47:23 -07:00
|
|
|
--> $DIR/marker-attribute-with-values.rs:9:1
|
2018-09-03 02:17:20 -07:00
|
|
|
|
|
2019-02-25 22:40:44 +03:00
|
|
|
LL | #[marker(key = "value")]
|
2025-06-24 01:49:26 +03:00
|
|
|
| ^^^^^^^^---------------^
|
|
|
|
|
| | |
|
|
|
|
|
| | didn't expect any arguments here
|
|
|
|
|
| help: must be of the form: `#[marker]`
|
2018-09-03 02:17:20 -07:00
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
|
2025-06-24 01:49:26 +03:00
|
|
|
For more information about this error, try `rustc --explain E0565`.
|