rust/tests/ui/nll/borrowed-local-error.stderr

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

17 lines
483 B
Plaintext
Raw Normal View History

error[E0597]: `v` does not live long enough
--> $DIR/borrowed-local-error.rs:8:9
|
LL | let x = gimme({
| ----- borrow later used by call
LL | let v = (22,);
2023-01-15 03:06:44 +00:00
| - binding `v` declared here
LL | &v
| ^^ borrowed value does not live long enough
2019-03-09 12:03:44 +00:00
LL |
LL | });
| - `v` dropped here while still borrowed
error: aborting due to previous error
2018-03-03 14:59:40 +00:00
For more information about this error, try `rustc --explain E0597`.