2018-02-27 19:03:23 +00:00
|
|
|
error[E0597]: `v` does not live long enough
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/borrowed-local-error.rs:10: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,);
|
|
|
|
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`.
|