macro_rules! always_or_unreachable {
($condition:expr, $message:literal, { $($details:tt)* }) => { ... };
($condition:expr, $message:literal) => { ... };
}Expand description
Asserts condition holds every time this line runs. Passes even if the line never runs.