mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
18 lines
492 B
Plaintext
18 lines
492 B
Plaintext
error[E0381]: used binding `e` isn't initialized
|
|
--> $DIR/issue-62107-match-arm-scopes.rs:4:9
|
|
|
|
|
LL | let e: i32;
|
|
| - binding declared here but left uninitialized
|
|
LL | match e {
|
|
LL | ref u if true => {}
|
|
| ^^^^^ `e` used here but it isn't initialized
|
|
|
|
|
help: consider assigning a value
|
|
|
|
|
LL | let e: i32 = 0;
|
|
| +++
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0381`.
|