mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-01 02:38:33 +00:00
7 lines
165 B
Rust
7 lines
165 B
Rust
//@ only-64bit
|
|
|
|
#![feature(const_transmute)]
|
|
|
|
pub const ZST: &[u8] = unsafe { std::mem::transmute(1usize) };
|
|
//~^ ERROR transmuting from 8-byte type to 16-byte type
|