2012-12-10 19:32:48 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2012-05-14 22:32:29 -05:00
|
|
|
// exec-env:RUST_POISON_ON_FREE=1
|
|
|
|
|
|
|
|
fn borrow(x: &int, f: fn(x: &int)) {
|
|
|
|
let before = *x;
|
|
|
|
f(x);
|
|
|
|
let after = *x;
|
|
|
|
assert before == after;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let mut x = @{f: ~3};
|
2012-06-30 18:19:07 -05:00
|
|
|
do borrow(x.f) |b_x| {
|
2012-05-14 22:32:29 -05:00
|
|
|
assert *b_x == 3;
|
2012-10-01 14:47:02 -05:00
|
|
|
assert ptr::addr_of(&(*x.f)) == ptr::addr_of(&(*b_x));
|
2012-05-14 22:32:29 -05:00
|
|
|
x = @{f: ~4};
|
|
|
|
|
2012-10-01 14:47:02 -05:00
|
|
|
debug!("ptr::addr_of(*b_x) = %x", ptr::addr_of(&(*b_x)) as uint);
|
2012-05-14 22:32:29 -05:00
|
|
|
assert *b_x == 3;
|
2012-10-01 14:47:02 -05:00
|
|
|
assert ptr::addr_of(&(*x.f)) != ptr::addr_of(&(*b_x));
|
2012-05-14 22:32:29 -05:00
|
|
|
}
|
|
|
|
}
|