1 #[macro_export] 2 macro_rules! static_assert { 3 ($($tt:tt)*) => { 4 const _: () = assert!($($tt)*); 5 } 6 } 7