third_party_rust_bitflags/tests/compile-pass/repr/c.rs
2021-08-12 11:05:35 +10:00

11 lines
128 B
Rust

use bitflags::bitflags;
bitflags! {
#[repr(C)]
struct Flags: u32 {
const A = 0b00000001;
}
}
fn main() {}