]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/borrowck-closures-two-mut.rs
Do not use entropy during gen_weighted_bool(1)
[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
16 fn a() {
17     let mut x = 3i;
18     let c1 = || x = 4;
19     let c2 = || x = 5; //~ ERROR cannot borrow `x` as mutable more than once
20 }
21
22 fn set(x: &mut int) {
23     *x = 4;
24 }
25
26 fn b() {
27     let mut x = 3i;
28     let c1 = || set(&mut x);
29     let c2 = || set(&mut x); //~ ERROR cannot borrow `x` as mutable more than once
30 }
31
32 fn c() {
33     let mut x = 3i;
34     let c1 = || x = 5;
35     let c2 = || set(&mut x); //~ ERROR cannot borrow `x` as mutable more than once
36 }
37
38 fn d() {
39     let mut x = 3i;
40     let c1 = || x = 5;
41     let c2 = || { let _y = || set(&mut x); }; // (nested closure)
42     //~^ ERROR cannot borrow `x` as mutable more than once
43 }
44
45 fn g() {
46     struct Foo {
47         f: Box<int>
48     }
49
50     let mut x = box Foo { f: box 3 };
51     let c1 = || set(&mut *x.f);
52     let c2 = || set(&mut *x.f);
53     //~^ ERROR cannot borrow `x` as mutable more than once
54 }
55
56 fn main() {
57 }