rayon-core 1.12.1

Core APIs for Rayon
Documentation
use rayon_core::join;

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