]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/kindck-implicit-close-over-mut-var.rs
Merge pull request #20510 from tshepang/patch-6
[rust.git] / src / test / run-pass / kindck-implicit-close-over-mut-var.rs
1 // Copyright 2012-2014 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 use std::thread::Thread;
12
13 fn user(_i: int) {}
14
15 fn foo() {
16     // Here, i is *copied* into the proc (heap closure).
17     // Requires allocation.  The proc's copy is not mutable.
18     let mut i = 0;
19     let _t = Thread::spawn(move|| {
20         user(i);
21         println!("spawned {}", i)
22     });
23     i += 1;
24     println!("original {}", i)
25 }
26
27 fn bar() {
28     // Here, the original i has not been moved, only copied, so is still
29     // mutable outside of the proc.
30     let mut i = 0;
31     while i < 10 {
32         let _t = Thread::spawn(move|| {
33             user(i);
34         });
35         i += 1;
36     }
37 }
38
39 fn car() {
40     // Here, i must be shadowed in the proc to be mutable.
41     let mut i = 0;
42     while i < 10 {
43         let _t = Thread::spawn(move|| {
44             let mut i = i;
45             i += 1;
46             user(i);
47         });
48         i += 1;
49     }
50 }
51
52 pub fn main() {}
53