]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/borrowck-insert-during-each.rs
Do not use entropy during gen_weighted_bool(1)
[rust.git] / src / test / compile-fail / borrowck-insert-during-each.rs
1 // Copyright 2012 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 extern crate collections;
12 use std::collections::HashSet;
13
14 struct Foo {
15   n: HashSet<int>,
16 }
17
18 impl Foo {
19     pub fn foo(&mut self, fun: |&int|) {
20         for f in self.n.iter() {
21             fun(f);
22         }
23     }
24 }
25
26 fn bar(f: &mut Foo) {
27   f.foo(
28         |a| { //~ ERROR closure requires unique access to `f`
29             f.n.insert(*a);
30         })
31 }
32
33 fn main() {
34   let mut f = Foo { n: HashSet::new() };
35   bar(&mut f);
36 }