1/** ```compile_fail,E0277 2 3use std::rc::Rc; 4 5rustc_thread_pool::join(|| Rc::new(22), || ()); //~ ERROR 6 7``` */ 8mod left {} 9 10/** ```compile_fail,E0277 11 12use std::rc::Rc; 13 14rustc_thread_pool::join(|| (), || Rc::new(23)); //~ ERROR 15 16``` */ 17mod right {}