summaryrefslogtreecommitdiffstats
path: root/vendor/rustc-rayon-core/src/compile_fail/rc_upvar.rs
blob: d8aebcfcbf24bd51ef6bc572e68c20f574b91f3b (plain)
1
2
3
4
5
6
7
8
9
/*! ```compile_fail,E0277

use std::rc::Rc;

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

``` */