rust/tests/ui/no-capture-arc.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
308 B
Rust
Raw Normal View History

//@ error-pattern: borrow of moved value
use std::sync::Arc;
2015-02-17 23:10:25 +00:00
use std::thread;
fn main() {
let v = vec![1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
let arc_v = Arc::new(v);
2015-02-17 23:10:25 +00:00
thread::spawn(move|| {
assert_eq!((*arc_v)[3], 4);
2014-01-27 23:29:50 +00:00
});
assert_eq!((*arc_v)[2], 3);
println!("{:?}", *arc_v);
}