2018-07-15 21:11:54 +00:00
|
|
|
error[E0597]: `a` does not live long enough
|
2019-04-07 15:07:36 +00:00
|
|
|
--> $DIR/issue-46036.rs:8:24
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
2023-01-15 03:06:44 +00:00
|
|
|
LL | let a = 3;
|
|
|
|
| - binding `a` declared here
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let foo = Foo { x: &a };
|
2018-10-14 14:12:02 +00:00
|
|
|
| ^^
|
|
|
|
| |
|
|
|
|
| borrowed value does not live long enough
|
2021-09-06 21:59:24 +00:00
|
|
|
| this usage requires that `a` is borrowed for `'static`
|
2018-07-15 21:11:54 +00:00
|
|
|
LL | loop { }
|
|
|
|
LL | }
|
2018-07-22 15:02:31 +00:00
|
|
|
| - `a` dropped here while still borrowed
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0597`.
|