macro_rules! unreach {
() => { ... };
}Expand description
Unreachable optimization hint.
In debug mod it panics using unreachable! macro
But hitting this macro in release mode would result in UB.
macro_rules! unreach {
() => { ... };
}Unreachable optimization hint.
In debug mod it panics using unreachable! macro
But hitting this macro in release mode would result in UB.