#![feature(async_await)]useasync_std::task;#[test]fnsmoke(){let res =task::block_on(async {1+2});assert_eq!(res,3);}#[test]#[should_panic="boom"]fnpanic(){task::block_on(async {// This panic should get propagated into the parent thread.
panic!("boom");});}