Files
cfg_if
crossbeam_deque
crossbeam_epoch
crossbeam_queue
crossbeam_utils
either
fid_rs
lazy_static
libc
memoffset
num_cpus
rayon
rayon_core
scopeguard
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
/*! ```compile_fail,E0277

use std::rc::Rc;

fn main() {
    let r = Rc::new(22);
    rayon_core::join(|| r.clone(), || r.clone());
    //~^ ERROR
}

``` */