]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/borrowck-preserve-box-in-uniq.rs
dcfead3a1c20571327e53d7e80ea359e45b430ea
[rust.git] / src / test / compile-fail / borrowck-preserve-box-in-uniq.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 // exec-env:RUST_POISON_ON_FREE=1
12
13 #![feature(managed_boxes)]
14
15 use std::gc::GC;
16
17 fn borrow(x: &int, f: |x: &int|) {
18     let before = *x;
19     f(x);
20     let after = *x;
21     assert_eq!(before, after);
22 }
23
24 struct F { f: Box<int> }
25
26 pub fn main() {
27     let mut x = box box(GC) F{f: box 3};
28     borrow(x.f, |b_x| {
29     //~^ ERROR cannot borrow `x` as mutable because `*x.f` is also borrowed as immutable
30         assert_eq!(*b_x, 3);
31         assert_eq!(&(*x.f) as *int, &(*b_x) as *int);
32         //~^ NOTE  borrow occurs due to use of `x` in closure
33         *x = box(GC) F{f: box 4};
34
35         println!("&*b_x = {:p}", &(*b_x));
36         assert_eq!(*b_x, 3);
37         assert!(&(*x.f) as *int != &(*b_x) as *int);
38     })
39 }