rust/tests/ui/regions/regions-infer-proc-static-upvar.stderr

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

18 lines
550 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0597]: `x` does not live long enough
--> $DIR/regions-infer-proc-static-upvar.rs:10:13
2018-08-08 07:28:26 -05:00
|
2023-01-14 21:06:44 -06:00
LL | let x = 3;
| - binding `x` declared here
LL | let y = &x;
| ^^ borrowed value does not live long enough
LL | / foo(move|| {
LL | | let _a = *y;
LL | | });
| |______- argument requires that `x` is borrowed for `'static`
LL | }
| - `x` dropped here while still borrowed
2018-08-08 07:28:26 -05:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0597`.