|
| 1 | +error: malformed `coverage` attribute input |
| 2 | + --> $DIR/bad-syntax.rs:23:1 |
| 3 | + | |
| 4 | +LL | #[coverage = true] |
| 5 | + | ^^^^^^^^^^^^^^^^^^ |
| 6 | + | |
| 7 | +help: the following are the possible correct uses |
| 8 | + | |
| 9 | +LL | #[coverage(on|off)] |
| 10 | + | |
| 11 | +LL | #[coverage] |
| 12 | + | |
| 13 | + |
| 14 | +error: expected identifier, found `,` |
| 15 | + --> $DIR/bad-syntax.rs:52:12 |
| 16 | + | |
| 17 | +LL | #[coverage(,off)] |
| 18 | + | ^ |
| 19 | + | | |
| 20 | + | expected identifier |
| 21 | + | help: remove this comma |
| 22 | + |
| 23 | +error: expected `coverage(off)` or `coverage(on)` |
| 24 | + --> $DIR/bad-syntax.rs:18:1 |
| 25 | + | |
| 26 | +LL | #[coverage] |
| 27 | + | ^^^^^^^^^^^ |
| 28 | + |
| 29 | +error: expected `coverage(off)` or `coverage(on)` |
| 30 | + --> $DIR/bad-syntax.rs:23:1 |
| 31 | + | |
| 32 | +LL | #[coverage = true] |
| 33 | + | ^^^^^^^^^^^^^^^^^^ |
| 34 | + |
| 35 | +error: expected `coverage(off)` or `coverage(on)` |
| 36 | + --> $DIR/bad-syntax.rs:30:1 |
| 37 | + | |
| 38 | +LL | #[coverage()] |
| 39 | + | ^^^^^^^^^^^^^ |
| 40 | + |
| 41 | +error: expected `coverage(off)` or `coverage(on)` |
| 42 | + --> $DIR/bad-syntax.rs:33:1 |
| 43 | + | |
| 44 | +LL | #[coverage(off, off)] |
| 45 | + | ^^^^^^^^^^^^^^^^^^^^^ |
| 46 | + |
| 47 | +error: expected `coverage(off)` or `coverage(on)` |
| 48 | + --> $DIR/bad-syntax.rs:36:1 |
| 49 | + | |
| 50 | +LL | #[coverage(off, on)] |
| 51 | + | ^^^^^^^^^^^^^^^^^^^^ |
| 52 | + |
| 53 | +error: expected `coverage(off)` or `coverage(on)` |
| 54 | + --> $DIR/bad-syntax.rs:39:1 |
| 55 | + | |
| 56 | +LL | #[coverage(bogus)] |
| 57 | + | ^^^^^^^^^^^^^^^^^^ |
| 58 | + |
| 59 | +error: expected `coverage(off)` or `coverage(on)` |
| 60 | + --> $DIR/bad-syntax.rs:42:1 |
| 61 | + | |
| 62 | +LL | #[coverage(bogus, off)] |
| 63 | + | ^^^^^^^^^^^^^^^^^^^^^^^ |
| 64 | + |
| 65 | +error: expected `coverage(off)` or `coverage(on)` |
| 66 | + --> $DIR/bad-syntax.rs:45:1 |
| 67 | + | |
| 68 | +LL | #[coverage(off, bogus)] |
| 69 | + | ^^^^^^^^^^^^^^^^^^^^^^^ |
| 70 | + |
| 71 | +error: expected `coverage(off)` or `coverage(on)` |
| 72 | + --> $DIR/bad-syntax.rs:52:1 |
| 73 | + | |
| 74 | +LL | #[coverage(,off)] |
| 75 | + | ^^^^^^^^^^^^^^^^^ |
| 76 | + |
| 77 | +error: aborting due to 11 previous errors |
| 78 | + |
0 commit comments