Skip to content

Instantly share code, notes, and snippets.

@ayosec
Created May 9, 2016 14:30
Show Gist options
  • Save ayosec/663bec676410e687378870d0480221d2 to your computer and use it in GitHub Desktop.
Save ayosec/663bec676410e687378870d0480221d2 to your computer and use it in GitHub Desktop.
Replace try! with panic!
macro_rules! try {
( $expr : expr) => {
match $expr {
Ok(v) => v,
Err(e) => panic!("Err {}: {:?}", stringify!($expr), e),
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment