rust/tests/ui/cast/unsized-struct-cast.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
317 B
Plaintext
Raw Normal View History

2023-09-22 10:31:26 +00:00
error[E0606]: casting `&[_; 0]` as `*const Data` is invalid
--> $DIR/unsized-struct-cast.rs:4:28
|
LL | const _: *const Data = &[] as *const Data;
| ^^^^^^^^^^^^^^^^^^
error: aborting due to 1 previous error
2023-09-22 10:31:26 +00:00
For more information about this error, try `rustc --explain E0606`.