]> git.proxmox.com Git - rustc.git/blame - src/test/ui/slice-mut.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / slice-mut.stderr
CommitLineData
b7449926 1error[E0308]: mismatched types
0731742a 2 --> $DIR/slice-mut.rs:7:22
b7449926
XL
3 |
4LL | let y: &mut[_] = &x[2..4];
60c5eb7d
XL
5 | ------- ^^^^^^^^ types differ in mutability
6 | |
7 | expected due to this
b7449926 8 |
60c5eb7d
XL
9 = note: expected mutable reference `&mut [_]`
10 found reference `&[isize]`
b7449926
XL
11
12error: aborting due to previous error
13
14For more information about this error, try `rustc --explain E0308`.