blob: 2564482a47e5d2587e53dffb3da153aea77094bd [file] [log] [blame]
use rayon_core::join;
#[test]
#[should_panic(expected = "should panic")]
fn simple_panic() {
join(|| {}, || panic!("should panic"));
}