Sindbad~EG File Manager

Current Path : /usr/local/src/clamav-1.0.9/libclamav_rust/.cargo/vendor/bitflags/tests/
Upload File :
Current File : //usr/local/src/clamav-1.0.9/libclamav_rust/.cargo/vendor/bitflags/tests/basic.rs

#![no_std]

use bitflags::bitflags;

bitflags! {
    /// baz
    struct Flags: u32 {
        const A = 0b00000001;
        #[doc = "bar"]
        const B = 0b00000010;
        const C = 0b00000100;
        #[doc = "foo"]
        const ABC = Flags::A.bits | Flags::B.bits | Flags::C.bits;
    }
}

#[test]
fn basic() {
    assert_eq!(Flags::ABC, Flags::A | Flags::B | Flags::C);
}

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists