mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
55 lines
1.2 KiB
Plaintext
55 lines
1.2 KiB
Plaintext
error: malformed `coverage` attribute input
|
|
--> $DIR/subword.rs:7:1
|
|
|
|
|
LL | #[coverage(yes(milord))]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: the following are the possible correct uses
|
|
|
|
|
LL | #[coverage(off)]
|
|
| ~~~~~~~~~~~~~~~~
|
|
LL | #[coverage(on)]
|
|
| ~~~~~~~~~~~~~~~
|
|
|
|
error: malformed `coverage` attribute input
|
|
--> $DIR/subword.rs:10:1
|
|
|
|
|
LL | #[coverage(no(milord))]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: the following are the possible correct uses
|
|
|
|
|
LL | #[coverage(off)]
|
|
| ~~~~~~~~~~~~~~~~
|
|
LL | #[coverage(on)]
|
|
| ~~~~~~~~~~~~~~~
|
|
|
|
error: malformed `coverage` attribute input
|
|
--> $DIR/subword.rs:13:1
|
|
|
|
|
LL | #[coverage(yes = "milord")]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: the following are the possible correct uses
|
|
|
|
|
LL | #[coverage(off)]
|
|
| ~~~~~~~~~~~~~~~~
|
|
LL | #[coverage(on)]
|
|
| ~~~~~~~~~~~~~~~
|
|
|
|
error: malformed `coverage` attribute input
|
|
--> $DIR/subword.rs:16:1
|
|
|
|
|
LL | #[coverage(no = "milord")]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: the following are the possible correct uses
|
|
|
|
|
LL | #[coverage(off)]
|
|
| ~~~~~~~~~~~~~~~~
|
|
LL | #[coverage(on)]
|
|
| ~~~~~~~~~~~~~~~
|
|
|
|
error: aborting due to 4 previous errors
|
|
|