Skip to content

Instantly share code, notes, and snippets.

@pimeys
Created September 12, 2019 13:30
Show Gist options
  • Save pimeys/e8e0ff549b93509eb0778d0d1da72889 to your computer and use it in GitHub Desktop.
Save pimeys/e8e0ff549b93509eb0778d0d1da72889 to your computer and use it in GitHub Desktop.
use futures::future::{Future, err};
fn main() {
let future = err("CRASH").map_err(|e| panic!("{:?}", e));
tokio::run(future);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment