]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/borrowck-vec-pattern-move-tail.stderr
Rollup merge of #106726 - cmorin6:fix-comment-typos, r=Nilstrieb
[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    |                -------- borrow of `a[_]` occurs here
6 ...
7 LL |     a[2] = 0;
8    |     ^^^^^^^^ assignment to borrowed `a[_]` occurs here
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`.