bitable 0.1.0

An all-const, compile-time checked, safe bit handling library with zero runtime overhead
Documentation
1
2
3
4
5
6
7
8
9
#[test]
fn test_compile_errors() {
    let t = trybuild::TestCases::new();
    unsafe {
        std::env::set_var("RUSTFLAGS", "--cfg feature=\"__test\"");
    }
    // This checks that the code inside this file FAILS to compile
    t.compile_fail("tests/fail/*.rs");
}