blob: 1207d4a1095dc5e7723284cde1e04271db70169a [file] [log] [blame]
error[E0506]: cannot assign to `a[..]` because it is borrowed
--> $DIR/borrowck-vec-pattern-move-tail.rs:16:5
|
LL | [1, 2, ref tail..] => tail,
| -------- borrow of `a[..]` occurs here
...
LL | a[2] = 0;
| ^^^^^^^^ assignment to borrowed `a[..]` occurs here
error: aborting due to previous error
For more information about this error, try `rustc --explain E0506`.