]> git.lizzy.rs Git - rust.git/blob - src/test/ui/slice-mut.stderr
Rollup merge of #68415 - matthiaskrgr:tidy_clippy, r=oli-obk
[rust.git] / src / test / ui / 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`.