mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 10:18:25 +00:00
31 lines
885 B
Plaintext
31 lines
885 B
Plaintext
error[E0565]: malformed `marker` attribute input
|
|
--> $DIR/marker-attribute-with-values.rs:3:1
|
|
|
|
|
LL | #[marker(always)]
|
|
| ^^^^^^^^--------^
|
|
| | |
|
|
| | didn't expect any arguments here
|
|
| help: must be of the form: `#[marker]`
|
|
|
|
error[E0565]: malformed `marker` attribute input
|
|
--> $DIR/marker-attribute-with-values.rs:6:1
|
|
|
|
|
LL | #[marker("never")]
|
|
| ^^^^^^^^---------^
|
|
| | |
|
|
| | didn't expect any arguments here
|
|
| help: must be of the form: `#[marker]`
|
|
|
|
error[E0565]: malformed `marker` attribute input
|
|
--> $DIR/marker-attribute-with-values.rs:9:1
|
|
|
|
|
LL | #[marker(key = "value")]
|
|
| ^^^^^^^^---------------^
|
|
| | |
|
|
| | didn't expect any arguments here
|
|
| help: must be of the form: `#[marker]`
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0565`.
|