rust/src/test/compile-fail/no-capture-arc.rs

18 lines
316 B
Rust
Raw Normal View History

// error-pattern: copying a noncopyable value
import comm::*;
fn main() {
let v = ~[1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
let arc_v = arc::arc(v);
2012-06-30 18:19:07 -05:00
do task::spawn() || {
let v = *arc::get(&arc_v);
assert v[3] == 4;
};
assert (*arc::get(&arc_v))[2] == 3;
log(info, arc_v);
}