mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-26 13:01:27 +03:00
10 lines
390 B
Plaintext
10 lines
390 B
Plaintext
error[E0080]: transmuting from 8-byte type to 16-byte type: `usize` -> `&[u8]`
|
|
--> $DIR/issue-79494.rs:3:33
|
|
|
|
|
LL | pub const ZST: &[u8] = unsafe { std::mem::transmute(1usize) };
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ evaluation of `ZST` failed here
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0080`.
|