testlib 0.1.6

test crate features for myself only, dont download
Documentation
#[cfg(not(target_env="testkernel"))]
pub fn debug() -> i32 {
    75
}

#[cfg(target_env="testkernel")]
pub fn debug() -> i32 {
    86
}

#[cfg(feature="testkernel")]
pub fn debug2() -> i32 {
    86
}

#[cfg(not(feature="testkernel"))]
pub fn debug2() -> i32 {
    if cfg!(feature = "testkernel") {
        81
    } else {
        83
    }
}