aboutsummaryrefslogtreecommitdiff
path: root/1.3.2/tests/compile-fail/visibility/pub_const.rs
blob: b90f0ce92d1e6f1c30b3f37272540964e47d7a55 (plain)
1
2
3
4
5
6
7
8
9
use bitflags::bitflags;

bitflags! {
    pub struct Flags1: u32 {
        pub const FLAG_A = 0b00000001;
    }
}

fn main() {}