blob: 7d34defc1d577dcdb467291c4fbf8ab611fb5a8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
error[E0308]: mismatched types
--> $DIR/slice-mut.rs:7:22
|
LL | let y: &mut[_] = &x[2..4];
| ------- ^^^^^^^^ types differ in mutability
| |
| expected due to this
|
= note: expected mutable reference `&mut [_]`
found reference `&[isize]`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.
|