2018-02-27 19:03:23 +00:00
|
|
|
error[E0597]: `v` does not live long enough
|
2019-04-07 15:07:36 +00:00
|
|
|
--> $DIR/borrowed-local-error.rs:8:9
|
2018-02-27 19:03:23 +00:00
|
|
|
|
|
2018-09-29 10:47:47 +00:00
|
|
|
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
|
2018-09-29 10:47:47 +00:00
|
|
|
LL | &v
|
|
|
|
| ^^ borrowed value does not live long enough
|
2019-03-09 12:03:44 +00:00
|
|
|
LL |
|
2018-09-29 10:47:47 +00:00
|
|
|
LL | });
|
|
|
|
| - `v` dropped here while still borrowed
|
2018-02-27 19:03:23 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0597`.
|