mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 02:31:20 +00:00
13 lines
181 B
Rust
13 lines
181 B
Rust
//@ run-pass
|
|
|
|
use std::mem;
|
|
|
|
#[repr(transparent)]
|
|
struct Foo(u32);
|
|
|
|
const TRANSMUTED_U32: u32 = unsafe { mem::transmute(Foo(3)) };
|
|
|
|
fn main() {
|
|
assert_eq!(TRANSMUTED_U32, 3);
|
|
}
|