1 2 3 4 5 6 7 8
#[allow(unused_macros)] macro_rules! try_panic { ($e:expr) => {{ $e.unwrap_or_else(|err| { panic!("{} failed with {}", stringify!($e), err); }) }}; }