rustc-rayon-core 0.5.1

Core APIs for Rayon - fork for rustc
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"));
}