rust/src/test/ui/borrowck/issue-62107-match-arm-scopes.stderr

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

12 lines
366 B
Plaintext
Raw Normal View History

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