2017-05-27 12:58:52 -05:00
|
|
|
error[E0597]: borrowed value does not live long enough
|
2017-12-13 19:27:23 -06:00
|
|
|
--> $DIR/issue-15480.rs:15:10
|
2016-11-03 01:58:01 -05:00
|
|
|
|
|
2017-08-13 03:46:49 -05:00
|
|
|
15 | &id(3)
|
2017-12-13 19:27:23 -06:00
|
|
|
| ^^^^^ temporary value does not live long enough
|
|
|
|
16 | ];
|
|
|
|
| - temporary value dropped here while still borrowed
|
2016-11-03 01:58:01 -05:00
|
|
|
...
|
2017-12-13 19:27:23 -06:00
|
|
|
22 | }
|
2016-11-03 01:58:01 -05:00
|
|
|
| - temporary value needs to live until here
|
|
|
|
|
|
|
|
|
= note: consider using a `let` binding to increase its lifetime
|
|
|
|
|
2017-07-02 05:49:30 -05:00
|
|
|
error: aborting due to previous error
|
2016-11-03 01:58:01 -05:00
|
|
|
|