1 2 3 4 5 6 7 8 9
extern crate rayon; use rayon::*; // error-pattern:should panic fn main() { join(|| {}, || panic!("should panic")); }