mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
13 lines
217 B
Rust
13 lines
217 B
Rust
// run-pass
|
|
|
|
use std::mem;
|
|
|
|
#[repr(transparent)]
|
|
struct Foo(#[allow(unused_tuple_struct_fields)] u32);
|
|
|
|
const TRANSMUTED_U32: u32 = unsafe { mem::transmute(Foo(3)) };
|
|
|
|
fn main() {
|
|
assert_eq!(TRANSMUTED_U32, 3);
|
|
}
|