testing 0.10.1

Testing utilities for the swc project.
Documentation
#[allow(unused_macros)]
macro_rules! try_panic {
    ($e:expr) => {{
        $e.unwrap_or_else(|err| {
            panic!("{} failed with {}", stringify!($e), err);
        })
    }};
}