mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
15 lines
371 B
Plaintext
15 lines
371 B
Plaintext
error: unused variable: `x`
|
|
--> $DIR/let-else-then-diverge.rs:9:13
|
|
|
|
|
LL | let x = 5;
|
|
| ^ help: if this is intentional, prefix it with an underscore: `_x`
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/let-else-then-diverge.rs:4:9
|
|
|
|
|
LL | #![deny(unused_variables)]
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to previous error
|
|
|