rust/tests/ui/const-generics/const-generic-default-wont-borrowck.stderr

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

17 lines
522 B
Plaintext
Raw Normal View History

2022-06-23 17:42:17 +00:00
error[E0381]: used binding `s` isn't initialized
2024-04-10 20:01:20 +00:00
--> $DIR/const-generic-default-wont-borrowck.rs:3:26
|
LL | let s: &'static str; s.len()
| - ^ `*s` used here but it isn't initialized
| |
2022-06-21 22:54:17 +00:00
| binding declared here but left uninitialized
|
help: consider assigning a value
|
2024-04-10 20:01:20 +00:00
LL | let s: &'static str = ""; s.len()
| ++++
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0381`.