]> git.lizzy.rs Git - rust.git/blob - tests/ui/array-slice-vec/slice-mut-2.stderr
Rollup merge of #106797 - FawazTirmizi:dev/issues/104284, r=bjorn3
[rust.git] / tests / ui / array-slice-vec / slice-mut-2.stderr
1 error[E0596]: cannot borrow `*x` as mutable, as it is behind a `&` reference
2   --> $DIR/slice-mut-2.rs:7:18
3    |
4 LL |     let _ = &mut x[2..4];
5    |                  ^ `x` is a `&` reference, so the data it refers to cannot be borrowed as mutable
6    |
7 help: consider changing this to be a mutable reference
8    |
9 LL |     let x: &[isize] = &mut [1, 2, 3, 4, 5];
10    |                       ~~~~~~~~~~~~~~~~~~~~
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0596`.