mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-02 20:37:58 +00:00
15 lines
436 B
Plaintext
15 lines
436 B
Plaintext
error[E0620]: cast to unsized type: `&[usize; 2]` as `[usize]`
|
|
--> $DIR/E0620.rs:2:16
|
|
|
|
|
LL | let _foo = &[1_usize, 2] as [usize];
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: consider casting to a reference instead
|
|
|
|
|
LL | let _foo = &[1_usize, 2] as &[usize];
|
|
| +
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0620`.
|