1use bitflags::bitflags;
2
3bitflags! {
4    pub struct Flags1: u32 {
5        pub const FLAG_A = 0b00000001;
6    }
7}
8
9fn main() {}
10