summaryrefslogtreecommitdiffstats
path: root/tests/ui/lint/lint-match-arms.stderr
blob: eccfa19fda781f5baca3d1214e38de00b6503bb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error: unused variable: `y`
  --> $DIR/lint-match-arms.rs:5:9
   |
LL |         y => (),
   |         ^ help: if this is intentional, prefix it with an underscore: `_y`
   |
note: the lint level is defined here
  --> $DIR/lint-match-arms.rs:3:16
   |
LL |         #[deny(unused_variables)]
   |                ^^^^^^^^^^^^^^^^

error: aborting due to 1 previous error