summaryrefslogtreecommitdiffstats
path: root/src/test/ui/error-codes/E0620.stderr
blob: 65152b2b74dd42077e02b05c0e7980d223708a31 (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];
   |                ^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: consider using an implicit coercion to `&[usize]` instead
  --> $DIR/E0620.rs:2:16
   |
LL |     let _foo = &[1_usize, 2] as [usize];
   |                ^^^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to previous error

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