rust/tests/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.

18 lines
496 B
Plaintext
Raw Normal View History

2022-06-21 22:54:17 +00:00
error[E0381]: used binding `e` isn't initialized
--> $DIR/issue-62107-match-arm-scopes.rs:4:9
|
LL | let e: i32;
2022-06-21 22:54:17 +00:00
| - 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
|
2024-04-10 20:01:20 +00:00
LL | let e: i32 = 42;
| ++++
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0381`.