rust/tests/ui/lint/lint-match-arms.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
367 B
Plaintext
Raw Normal View History

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