assertify 0.7.1

Deprecated: use assert2 for better assertions
Documentation
1
2
3
4
5
6
7
8
#![allow(deprecated)]

use assertify::assertify;

fn main() {
    assertify!("foo");
    unreachable!();
}