2018-02-27 13:03:23 -06:00
|
|
|
error[E0597]: borrowed value does not live long enough
|
2018-03-05 16:29:05 -06:00
|
|
|
--> $DIR/borrowed-temporary-error.rs:20:10
|
2018-02-27 13:03:23 -06:00
|
|
|
|
|
|
|
|
LL | &(v,)
|
|
|
|
| ^^^^ temporary value does not live long enough
|
|
|
|
LL | //~^ ERROR borrowed value does not live long enough [E0597]
|
|
|
|
LL | });
|
|
|
|
| - temporary value only lives until here
|
|
|
|
LL | println!("{:?}", x);
|
|
|
|
| - borrow later used here
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0597`.
|