rust/src/test/ui/error-codes/E0620.stderr
Guillaume Gomez 2e104a77cf update tests
2018-03-14 00:53:24 +01:00

15 lines
516 B
Text

error[E0620]: cast to unsized type: `&[usize; 2]` as `[usize]`
--> $DIR/E0620.rs:12:16
|
LL | let _foo = &[1_usize, 2] as [usize]; //~ ERROR E0620
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
help: consider using an implicit coercion to `&[usize]` instead
--> $DIR/E0620.rs:12: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`.