about summary refs log tree commit diff
path: root/compiler/rustc_thread_pool/src/compile_fail/rc_upvar.rs
blob: 6dc9ead48a09e5085d1f88d94b8492df54a6747b (plain)
1
2
3
4
5
6
7
8
9
/*! ```compile_fail,E0277

use std::rc::Rc;

let r = Rc::new(22);
rustc_thread_pool::join(|| r.clone(), || r.clone());
//~^ ERROR

``` */