static_assert 0.1.3

static assertions
docs.rs failed to build static_assert-0.1.3
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.

Build Status Latest Version

##Example usage

#![feature(plugin, custom_attribute)]
#![plugin(static_assert_)]
#[macro_use(static_assert)] extern crate static_assert_;

fn main() {
    #[static_assert_]
    const TEST: bool = false;

    static_assert!(5 == 4);
}