rust/src/test/ui/borrowck/borrowck-vec-pattern-move-tail.ast.nll.stderr

16 lines
571 B
Plaintext
Raw Normal View History

2018-08-08 14:28:26 +02:00
error[E0506]: cannot assign to `a[..]` because it is borrowed
2018-12-25 08:56:47 -07:00
--> $DIR/borrowck-vec-pattern-move-tail.rs:16:5
2018-08-08 14:28:26 +02:00
|
LL | [1, 2, ref tail..] => tail,
| -------- borrow of `a[..]` occurs here
...
LL | a[2] = 0; //[ast]~ ERROR cannot assign to `a[..]` because it is borrowed
| ^^^^^^^^ assignment to borrowed `a[..]` occurs here
...
LL | println!("t[0]: {}", t[0]);
| ---- borrow later used here
error: aborting due to previous error
For more information about this error, try `rustc --explain E0506`.