1 2 3 4 5 6 7 8 9
extern crate rayon; use std::rc::Rc; fn main() { rayon::join(|| Rc::new(22), || Rc::new(23)); //~^ ERROR E0277 //~| ERROR E0277 }