blob: 47549215948d11c0097c67a691180b7c9f30f7b7 [file] [log] [blame]
use bitflags::bitflags;
// Checks for possible errors caused by overriding names used by `bitflags!` internally.
mod core {}
mod _core {}
bitflags! {
struct Test: u8 {
const A = 1;
}
}
fn main() {}