blob: 447a9f25b7fbac3e54ec9bf7e3319139803c492d [file] [log] [blame]
//! Macro definitions
/// Constant panicking assertion.
// TODO(tarcieri): use const panic when stable.
// See: https://github.com/rust-lang/rust/issues/51999
macro_rules! const_assert {
($bool:expr, $msg:expr) => {
[$msg][!$bool as usize]
};
}