2023-03-20 15:53:43 -05:00
|
|
|
error[E0277]: `[i32; 4]` needs to have the same ABI as a pointer
|
2022-11-12 16:27:18 -06:00
|
|
|
--> $DIR/check-size-at-cast.rs:7:13
|
|
|
|
|
|
|
|
|
LL | let i = [1, 2, 3, 4] as dyn* Debug;
|
2023-02-07 12:02:20 -06:00
|
|
|
| ^^^^^^^^^^^^ `[i32; 4]` needs to be a pointer-like type
|
2022-11-12 16:27:18 -06:00
|
|
|
|
|
2023-02-07 12:02:20 -06:00
|
|
|
= help: the trait `PointerLike` is not implemented for `[i32; 4]`
|
2022-11-12 16:27:18 -06:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2022-11-12 16:27:18 -06:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|