rust/src/test/ui/unboxed-closures/unboxed-closure-region.stderr
2018-12-25 21:08:33 -07:00

17 lines
491 B
Plaintext

error[E0597]: `x` does not live long enough
--> $DIR/unboxed-closure-region.rs:8:12
|
LL | || x //~ ERROR `x` does not live long enough
| -- ^ borrowed value does not live long enough
| |
| capture occurs here
LL | };
| - borrowed value only lives until here
LL | _f;
LL | }
| - borrowed value needs to live until here
error: aborting due to previous error
For more information about this error, try `rustc --explain E0597`.