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