mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-30 01:31:29 +00:00
23 lines
300 B
Rust
23 lines
300 B
Rust
#![feature(repr_simd)]
|
|
|
|
#[repr(C, align(8))]
|
|
pub struct ReprC {
|
|
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,
|
|
}
|