blob: 55f13a699d0efeba6fb2d07cb8f05a1ad9ecb3d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
error[E0597]: `a` does not live long enough
--> $DIR/issue-46036.rs:19:24
|
LL | let foo = Foo { x: &a }; //~ ERROR E0597
| ^^
| |
| borrowed value does not live long enough
| requires that `a` is borrowed for `'static`
LL | loop { }
LL | }
| - `a` dropped here while still borrowed
error: aborting due to previous error
For more information about this error, try `rustc --explain E0597`.
|