[go: up one dir, main page]

rayon-core 1.6.0

Core APIs for Rayon
Documentation
1
2
3
4
5
6
7
8
9
extern crate rayon_core;

use rayon_core::join;

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