rust/src/test/ui/borrowck/borrowck-vec-pattern-tail-element-loan.stderr

19 lines
635 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0597]: `vec` does not live long enough
--> $DIR/borrowck-vec-pattern-tail-element-loan.rs:15:26
|
LL | let vec: &[isize] = &vec; //~ ERROR `vec` does not live long enough
| ^^^ borrowed value does not live long enough
...
LL | }
| - borrowed value only lives until here
|
note: borrowed value must be valid for the lifetime 'a as defined on the function body at 13:6...
--> $DIR/borrowck-vec-pattern-tail-element-loan.rs:13:6
|
LL | fn a<'a>() -> &'a isize {
| ^^
error: aborting due to previous error
For more information about this error, try `rustc --explain E0597`.