]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/borrowck-vec-pattern-move-tail.stderr
Rollup merge of #63055 - Mark-Simulacrum:save-analysis-clean-2, r=Xanewok
[rust.git] / src / test / 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:12: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`.