aboutsummaryrefslogtreecommitdiff
path: root/bitflags/test_suite/tests/conflicting_trait_impls.rs
blob: eb7a3251a322ba250c17c2b2921bec637effc6e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![no_std]

#[macro_use]
extern crate bitflags;

#[allow(unused_imports)]
use core::fmt::Display;

bitflags! {
    /// baz
    struct Flags: u32 {
        const A = 0b00000001;
    }
}

#[test]
fn main() {}