2024-06-20 03:13:48 -05:00
|
|
|
error: malformed `coverage` attribute input
|
2024-06-19 02:58:55 -05:00
|
|
|
--> $DIR/subword.rs:7:1
|
|
|
|
|
|
|
|
|
LL | #[coverage(yes(milord))]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
2024-06-20 03:13:48 -05:00
|
|
|
|
|
|
|
|
help: the following are the possible correct uses
|
|
|
|
|
|
|
|
|
LL | #[coverage(off)]
|
|
|
|
| ~~~~~~~~~~~~~~~~
|
|
|
|
LL | #[coverage(on)]
|
|
|
|
| ~~~~~~~~~~~~~~~
|
2024-06-19 02:58:55 -05:00
|
|
|
|
2024-06-20 03:13:48 -05:00
|
|
|
error: malformed `coverage` attribute input
|
2024-06-19 02:58:55 -05:00
|
|
|
--> $DIR/subword.rs:10:1
|
|
|
|
|
|
|
|
|
LL | #[coverage(no(milord))]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
2024-06-20 03:13:48 -05:00
|
|
|
|
|
|
|
|
help: the following are the possible correct uses
|
|
|
|
|
|
|
|
|
LL | #[coverage(off)]
|
|
|
|
| ~~~~~~~~~~~~~~~~
|
|
|
|
LL | #[coverage(on)]
|
|
|
|
| ~~~~~~~~~~~~~~~
|
2024-06-19 02:58:55 -05:00
|
|
|
|
2024-06-20 03:13:48 -05:00
|
|
|
error: malformed `coverage` attribute input
|
2024-06-19 02:58:55 -05:00
|
|
|
--> $DIR/subword.rs:13:1
|
|
|
|
|
|
|
|
|
LL | #[coverage(yes = "milord")]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2024-06-20 03:13:48 -05:00
|
|
|
|
|
|
|
|
help: the following are the possible correct uses
|
|
|
|
|
|
|
|
|
LL | #[coverage(off)]
|
|
|
|
| ~~~~~~~~~~~~~~~~
|
|
|
|
LL | #[coverage(on)]
|
|
|
|
| ~~~~~~~~~~~~~~~
|
2024-06-19 02:58:55 -05:00
|
|
|
|
2024-06-20 03:13:48 -05:00
|
|
|
error: malformed `coverage` attribute input
|
2024-06-19 02:58:55 -05:00
|
|
|
--> $DIR/subword.rs:16:1
|
|
|
|
|
|
|
|
|
LL | #[coverage(no = "milord")]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2024-06-20 03:13:48 -05:00
|
|
|
|
|
|
|
|
help: the following are the possible correct uses
|
|
|
|
|
|
|
|
|
LL | #[coverage(off)]
|
|
|
|
| ~~~~~~~~~~~~~~~~
|
|
|
|
LL | #[coverage(on)]
|
|
|
|
| ~~~~~~~~~~~~~~~
|
2024-06-19 02:58:55 -05:00
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|