]> git.lizzy.rs Git - rust.git/blob - tests/ui/array-slice-vec/slice-mut.stderr
Merge commit '1480cea393d0cee195e59949eabdfbcf1230f7f9' into clippyup
[rust.git] / tests / ui / array-slice-vec / slice-mut.stderr
1 error[E0308]: mismatched types
2   --> $DIR/slice-mut.rs:7:22
3    |
4 LL |     let y: &mut[_] = &x[2..4];
5    |            -------   ^^^^^^^^ types differ in mutability
6    |            |
7    |            expected due to this
8    |
9    = note: expected mutable reference `&mut [_]`
10                       found reference `&[isize]`
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0308`.