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