]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/borrowck-closures-two-mut.rs
complete openbsd support for `std::env`
[rust.git] / src / test / compile-fail / borrowck-closures-two-mut.rs
1 // Copyright 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 // Tests that two closures cannot simultaneously have mutable
12 // access to the variable, whether that mutable access be used
13 // for direct assignment or for taking mutable ref. Issue #6801.
14
15 #![feature(box_syntax)]
16
17 fn a() {
18     let mut x = 3;
19     let c1 = |&mut:| x = 4;
20     let c2 = |&mut:| x = 5; //~ ERROR cannot borrow `x` as mutable more than once
21 }
22
23 fn set(x: &mut isize) {
24     *x = 4;
25 }
26
27 fn b() {
28     let mut x = 3;
29     let c1 = |&mut:| set(&mut x);
30     let c2 = |&mut:| set(&mut x); //~ ERROR cannot borrow `x` as mutable more than once
31 }
32
33 fn c() {
34     let mut x = 3;
35     let c1 = |&mut:| x = 5;
36     let c2 = |&mut:| set(&mut x); //~ ERROR cannot borrow `x` as mutable more than once
37 }
38
39 fn d() {
40     let mut x = 3;
41     let c1 = |&mut:| x = 5;
42     let c2 = |&mut:| { let _y = |&mut:| set(&mut x); }; // (nested closure)
43     //~^ ERROR cannot borrow `x` as mutable more than once
44 }
45
46 fn g() {
47     struct Foo {
48         f: Box<isize>
49     }
50
51     let mut x = box Foo { f: box 3 };
52     let c1 = |&mut:| set(&mut *x.f);
53     let c2 = |&mut:| set(&mut *x.f);
54     //~^ ERROR cannot borrow `x` as mutable more than once
55 }
56
57 fn main() {
58 }