blob: 93e3a603849a1e58ec172abef023ee0e0994e2f6 [file] [log] [blame]
/** ```compile_fail,E0277
use std::rc::Rc;
rayon_core::join(|| Rc::new(22), || ()); //~ ERROR
``` */
mod left {}
/** ```compile_fail,E0277
use std::rc::Rc;
rayon_core::join(|| (), || Rc::new(23)); //~ ERROR
``` */
mod right {}