summaryrefslogtreecommitdiffstats
path: root/tests/ui/dyn-star/check-size-at-cast.stderr
blob: 19700b40644006df9e1b388ade33cc10dad87b38 (plain)
1
2
3
4
5
6
7
8
9
10
11
error[E0277]: `[i32; 4]` needs to have the same alignment and size as a pointer
  --> $DIR/check-size-at-cast.rs:7:13
   |
LL |     let i = [1, 2, 3, 4] as dyn* Debug;
   |             ^^^^^^^^^^^^ `[i32; 4]` needs to be a pointer-like type
   |
   = help: the trait `PointerLike` is not implemented for `[i32; 4]`

error: aborting due to previous error

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