]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/borrowck-mut-uniq.rs
ac6ea8dec051fdf97562bf1169eca1925aefd84c
[rust.git] / src / test / run-pass / borrowck-mut-uniq.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 use std::mem::swap;
12
13 struct Ints {sum: ~int, values: Vec<int> }
14
15 fn add_int(x: &mut Ints, v: int) {
16     *x.sum += v;
17     let mut values = Vec::new();
18     swap(&mut values, &mut x.values);
19     values.push(v);
20     swap(&mut values, &mut x.values);
21 }
22
23 fn iter_ints(x: &Ints, f: |x: &int| -> bool) -> bool {
24     let l = x.values.len();
25     range(0u, l).advance(|i| f(&x.values[i]))
26 }
27
28 pub fn main() {
29     let mut ints = ~Ints {sum: ~0, values: Vec::new()};
30     add_int(ints, 22);
31     add_int(ints, 44);
32
33     iter_ints(ints, |i| {
34         println!("int = {}", *i);
35         true
36     });
37
38     println!("ints={:?}", ints);
39 }