oden/third-party/vendor/bitflags-1.3.2/tests/compile-fail/impls/copy.rs
2024-03-08 11:03:01 -08:00

10 lines
140 B
Rust

use bitflags::bitflags;
bitflags! {
#[derive(Clone, Copy)]
struct Flags: u32 {
const A = 0b00000001;
}
}
fn main() {}