rayon-core 1.7.0

Core APIs for Rayon
Documentation
1
2
3
4
5
6
7
use rayon_core::join;

#[test]
#[should_panic(expected = "should panic")]
fn simple_panic() {
    join(|| {}, || panic!("should panic"));
}