macro_rules! panic_abort {
() => { ... };
(if { $($p:tt)* } else { $($n:tt)* }) => { ... };
($($p:tt)*) => { ... };
}
Expand description
Indicates that a panic
will lead to an abort, and cannot be caught.
This macro suppresses the provided code because #[cfg(panic = "abort")]
is not currently active.