rust/tests/rustdoc/inline_cross/auxiliary/repr.rs

23 lines
300 B
Rust
Raw Normal View History

#![feature(repr_simd)]
#[repr(C, align(8))]
pub struct ReprC {
2023-04-27 09:41:22 -05:00
field: u8,
}
#[repr(simd, packed(2))]
pub struct ReprSimd {
field: u8,
}
#[repr(transparent)]
pub struct ReprTransparent {
field: u8,
}
#[repr(isize)]
pub enum ReprIsize {
Bla,
}
#[repr(u8)]
pub enum ReprU8 {
Bla,
}