]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/borrowck-vec-pattern-move-tail.stderr
Auto merge of #107843 - bjorn3:sync_cg_clif-2023-02-09, r=bjorn3
[rust.git] / tests / ui / borrowck / borrowck-vec-pattern-move-tail.stderr
1 error[E0506]: cannot assign to `a[_]` because it is borrowed
2   --> $DIR/borrowck-vec-pattern-move-tail.rs:8:5
3    |
4 LL |         [1, 2, ref tail @ ..] => tail,
5    |                -------- `a[_]` is borrowed here
6 ...
7 LL |     a[2] = 0;
8    |     ^^^^^^^^ `a[_]` is assigned to here but it was already borrowed
9 LL |     println!("t[0]: {}", t[0]);
10    |                          ---- borrow later used here
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0506`.