os-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
552 B
Text
Raw Normal View History

2018-08-08 14:28:26 +02:00
error[E0597]: `x` does not live long enough
--> $DIR/regions-infer-proc-static-upvar.rs:10:13
2018-08-08 14:28:26 +02:00
|
2023-01-15 03:06:44 +00: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 14:28:26 +02:00
error: aborting due to 1 previous error
2018-08-08 14:28:26 +02:00
For more information about this error, try `rustc --explain E0597`.