summaryrefslogtreecommitdiffstats
path: root/src/test/ui/borrowck/borrowck-vec-pattern-move-tail.stderr
blob: ff70ba9fcca8b5145983d135fe1cb7d6630dc868 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0506]: cannot assign to `a[_]` because it is borrowed
  --> $DIR/borrowck-vec-pattern-move-tail.rs:8:5
   |
LL |         [1, 2, ref tail @ ..] => tail,
   |                ------------- borrow of `a[_]` occurs here
...
LL |     a[2] = 0;
   |     ^^^^^^^^ 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`.