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