2022-06-21 17:54:17 -05:00
|
|
|
error[E0381]: used binding `e` isn't initialized
|
2019-06-29 09:38:20 -05:00
|
|
|
--> $DIR/issue-62107-match-arm-scopes.rs:3:11
|
|
|
|
|
|
2022-06-21 13:57:45 -05:00
|
|
|
LL | let e: i32;
|
2022-06-21 17:54:17 -05:00
|
|
|
| - binding declared here but left uninitialized
|
2019-06-29 09:38:20 -05:00
|
|
|
LL | match e {
|
2022-06-21 13:57:45 -05:00
|
|
|
| ^ `e` used here but it isn't initialized
|
2019-06-29 09:38:20 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0381`.
|