mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
12 lines
410 B
Plaintext
12 lines
410 B
Plaintext
error[E0277]: `[i32; 4]` needs to have the same ABI 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 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|