mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 19:57:10 +00:00
13 lines
123 B
Rust
13 lines
123 B
Rust
//@ check-pass
|
|
|
|
#[repr(Rust)]
|
|
struct A;
|
|
|
|
#[repr(Rust, align(16))]
|
|
struct B;
|
|
|
|
#[repr(Rust, packed)]
|
|
struct C;
|
|
|
|
fn main() {}
|