rust/tests/ui/nll/issue-46036.stderr

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

18 lines
566 B
Plaintext
Raw Normal View History

2018-07-15 21:11:54 +00:00
error[E0597]: `a` does not live long enough
--> $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 };
| ^^
| |
| borrowed value does not live long enough
| this usage requires that `a` is borrowed for `'static`
2018-07-15 21:11:54 +00:00
LL | loop { }
LL | }
| - `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`.