mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 08:44:35 +00:00
a983dd8563
Unify the output of `suggest_assign_value` and `ty_kind_suggestion`. Ideally we'd make these a single function, but doing so would likely require modify the crate dependency tree.
18 lines
633 B
Plaintext
18 lines
633 B
Plaintext
error[E0381]: used binding `last_error` isn't initialized
|
|
--> $DIR/issue-103250.rs:22:13
|
|
|
|
|
LL | let mut last_error: Box<dyn std::error::Error>;
|
|
| -------------- binding declared here but left uninitialized
|
|
...
|
|
LL | Err(last_error)
|
|
| ^^^^^^^^^^ `last_error` used here but it isn't initialized
|
|
|
|
|
help: consider assigning a value
|
|
|
|
|
LL | let mut last_error: Box<dyn std::error::Error> = value;
|
|
| +++++++
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0381`.
|