mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
15 lines
366 B
Plaintext
15 lines
366 B
Plaintext
error: unused variable: `a`
|
|
--> $DIR/issue-22599.rs:8:19
|
|
|
|
|
LL | v = match 0 { a => 0 };
|
|
| ^ help: if this is intentional, prefix it with an underscore: `_a`
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/issue-22599.rs:1:9
|
|
|
|
|
LL | #![deny(unused_variables)]
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to previous error
|
|
|