rust/src/test/ui/lint/lint-match-arms.stderr

15 lines
345 B
Plaintext
Raw Normal View History

2019-03-30 18:00:07 -05:00
error: unused variable: `y`
--> $DIR/lint-match-arms.rs:5:9
|
LL | y => (),
| ^ help: consider prefixing with an underscore: `_y`
|
note: lint level defined here
--> $DIR/lint-match-arms.rs:3:16
|
LL | #[deny(unused_variables)]
| ^^^^^^^^^^^^^^^^
error: aborting due to previous error