mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-20 11:13:41 +00:00
11 lines
136 B
Rust
11 lines
136 B
Rust
use bitflags::bitflags;
|
|
|
|
bitflags! {
|
|
#[derive(Default)]
|
|
struct Flags: u32 {
|
|
const A = 0b00000001;
|
|
}
|
|
}
|
|
|
|
fn main() {}
|