2019-03-30 18:00:07 -05:00
|
|
|
error: unused variable: `y`
|
|
|
|
--> $DIR/lint-match-arms.rs:5:9
|
|
|
|
|
|
|
|
|
LL | y => (),
|
2020-03-23 03:02:46 -05:00
|
|
|
| ^ help: if this is intentional, prefix it with an underscore: `_y`
|
2019-03-30 18:00:07 -05:00
|
|
|
|
|
2020-01-22 17:57:38 -06:00
|
|
|
note: the lint level is defined here
|
2019-03-30 18:00:07 -05:00
|
|
|
--> $DIR/lint-match-arms.rs:3:16
|
|
|
|
|
|
|
|
|
LL | #[deny(unused_variables)]
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|