blob: f7319a878c27a844757b3aca4c4a6586222b0882 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
error[E0620]: cast to unsized type: `&[usize; 2]` as `[usize]`
--> $DIR/E0620.rs:2:16
|
LL | let _foo = &[1_usize, 2] as [usize]; //~ ERROR E0620
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
help: consider using an implicit coercion to `&[usize]` instead
--> $DIR/E0620.rs:2:16
|
LL | let _foo = &[1_usize, 2] as [usize]; //~ ERROR E0620
| ^^^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to previous error
For more information about this error, try `rustc --explain E0620`.
|