[][src]Macro mirai_annotations::checked_verify

macro_rules! checked_verify {
    ($condition:expr) => { ... };
    ($condition:expr, $message:literal) => { ... };
    ($condition:expr, $($arg:tt)*) => { ... };
}

Equivalent to the standard assert! when used with an unmodified Rust compiler. When compiled with MIRAI, this causes MIRAI to check the condition and emit a diagnostic unless it can prove it to be true.