]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/attr-empty-expr.stderr
Rollup merge of #87596 - jesyspa:issue-87318-hidden-whitespace, r=estebank
[rust.git] / src / test / ui / macros / attr-empty-expr.stderr
1 error: removing an expression is not supported in this position
2   --> $DIR/attr-empty-expr.rs:8:13
3    |
4 LL |     let _ = #[test] 0;
5    |             ^^^^^^^
6
7 error: removing an expression is not supported in this position
8   --> $DIR/attr-empty-expr.rs:9:13
9    |
10 LL |     let _ = #[bench] 1;
11    |             ^^^^^^^^
12
13 error: removing an expression is not supported in this position
14   --> $DIR/attr-empty-expr.rs:10:13
15    |
16 LL |     let _ = #[test_case] 2;
17    |             ^^^^^^^^^^^^
18
19 error: aborting due to 3 previous errors
20