summary refs log tree commit diff
path: root/tests/ui/error-codes/E0620.stderr
blob: 644ba813c9608895e3f68ed667d9846c9ed9009f (plain)
1
2
3
4
5
6
7
8
9
10
11
error[E0620]: cast to unsized type: `&[usize; 2]` as `[usize]`
  --> $DIR/E0620.rs:2:16
   |
LL |     let _foo = &[1_usize, 2] as [usize];
   |                ^^^^^^^^^^^^^^^^^-------
   |                                 |
   |                                 help: try casting to a reference instead: `&[usize]`

error: aborting due to 1 previous error

For more information about this error, try `rustc --explain E0620`.