mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
656db98bd9
CC #99430
18 lines
701 B
Plaintext
18 lines
701 B
Plaintext
error[E0597]: `person` does not live long enough
|
|
--> $DIR/coercion-generic-regions.rs:17:24
|
|
|
|
|
LL | let person = "Fred".to_string();
|
|
| ------ binding `person` declared here
|
|
LL | let person: &str = &person;
|
|
| ^^^^^^^
|
|
| |
|
|
| borrowed value does not live long enough
|
|
| assignment requires that `person` is borrowed for `'static`
|
|
LL | let s: Box<dyn Trait<&'static str>> = Box::new(Struct { person: person });
|
|
LL | }
|
|
| - `person` dropped here while still borrowed
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0597`.
|