Sign in
rust
/
rust
/
e8a00a7621606f8c4a34b679cefaaa6aecf2442e
/
.
/
compiler
/
rustc_thread_pool
/
src
/
compile_fail
/
rc_upvar.rs
blob: 6dc9ead48a09e5085d1f88d94b8492df54a6747b [
file
] [
log
] [
blame
]
/*! ```compile_fail,E0277
use std::rc::Rc;
let r = Rc::new(22);
rustc_thread_pool::join(|| r.clone(), || r.clone());
//~^ ERROR
``` */