macro_rules! assert_unreachable {
($message:expr) => { ... };
}Expand description
Assert that a code path should never be reached.
Does not panic — records the violation and logs at ERROR level. Tracks in shared memory for reporting.
macro_rules! assert_unreachable {
($message:expr) => { ... };
}Assert that a code path should never be reached.
Does not panic — records the violation and logs at ERROR level. Tracks in shared memory for reporting.