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

19 lines
632 B
Plaintext
Raw Normal View History

2018-08-08 14:28:26 +02:00
error[E0597]: `vec` does not live long enough
2018-12-25 08:56:47 -07:00
--> $DIR/borrowck-vec-pattern-tail-element-loan.rs:5:26
2018-08-08 14:28:26 +02:00
|
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
|
2018-12-25 08:56:47 -07:00
note: borrowed value must be valid for the lifetime 'a as defined on the function body at 3:6...
--> $DIR/borrowck-vec-pattern-tail-element-loan.rs:3:6
2018-08-08 14:28:26 +02:00
|
LL | fn a<'a>() -> &'a isize {
| ^^
error: aborting due to previous error
For more information about this error, try `rustc --explain E0597`.