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