mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
17 lines
536 B
Plaintext
17 lines
536 B
Plaintext
error[E0381]: used binding `s` isn't initialized
|
|
--> $DIR/const-generic-default-wont-borrowck.rs:2:26
|
|
|
|
|
LL | let s: &'static str; s.len()
|
|
| - ^^^^^^^ `*s` used here but it isn't initialized
|
|
| |
|
|
| binding declared here but left uninitialized
|
|
|
|
|
help: consider assigning a value
|
|
|
|
|
LL | let s: &'static str = todo!(); s.len()
|
|
| +++++++++
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0381`.
|