]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/no-capture-arc.rs
7311a0d5302f330fade049f0c3cd0d6574feefb3
[rust.git] / src / test / compile-fail / no-capture-arc.rs
1 // Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // error-pattern: use of moved value
12
13 extern crate sync;
14 use sync::Arc;
15
16 use std::task;
17
18 fn main() {
19     let v = vec!(1, 2, 3, 4, 5, 6, 7, 8, 9, 10);
20     let arc_v = Arc::new(v);
21
22     task::spawn(proc() {
23         let v = arc_v.get();
24         assert_eq!(v[3], 4);
25     });
26
27     assert_eq!((arc_v.get())[2], 3);
28
29     println!("{:?}", arc_v);
30 }