rust/tests/ui/abi/explicit_repr_rust.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
123 B
Rust
Raw Permalink Normal View History

2023-07-29 01:58:29 -05:00
//@ check-pass
#[repr(Rust)]
struct A;
#[repr(Rust, align(16))]
struct B;
#[repr(Rust, packed)]
struct C;
fn main() {}