summaryrefslogtreecommitdiffstats
path: root/src/test/ui/macros/attr-empty-expr.stderr
blob: 53721053bcc08314a0e27e5c09aadda2fdf93b2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error: removing an expression is not supported in this position
  --> $DIR/attr-empty-expr.rs:8:13
   |
LL |     let _ = #[test] 0;
   |             ^^^^^^^

error: removing an expression is not supported in this position
  --> $DIR/attr-empty-expr.rs:9:13
   |
LL |     let _ = #[bench] 1;
   |             ^^^^^^^^

error: removing an expression is not supported in this position
  --> $DIR/attr-empty-expr.rs:10:13
   |
LL |     let _ = #[test_case] 2;
   |             ^^^^^^^^^^^^

error: aborting due to 3 previous errors