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-16 08:57:52 -05:00
|
|
|
// exec-env:RUST_POISON_ON_FREE=1
|
|
|
|
|
2013-12-12 01:17:54 -06:00
|
|
|
#[feature(managed_boxes)];
|
|
|
|
|
2012-05-16 08:57:52 -05:00
|
|
|
fn testfn(cond: bool) {
|
|
|
|
let mut x = @3;
|
|
|
|
let mut y = @4;
|
|
|
|
|
|
|
|
// borrow x and y
|
2013-08-17 10:37:42 -05:00
|
|
|
let r_x = &*x;
|
|
|
|
let r_y = &*y;
|
2013-06-04 23:43:41 -05:00
|
|
|
let mut r = r_x;
|
|
|
|
let mut exp = 3;
|
2012-05-16 08:57:52 -05:00
|
|
|
|
|
|
|
if cond {
|
|
|
|
r = r_y;
|
|
|
|
exp = 4;
|
|
|
|
}
|
|
|
|
|
2013-10-21 15:08:31 -05:00
|
|
|
info!("*r = {}, exp = {}", *r, exp);
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(*r, exp);
|
2012-05-16 08:57:52 -05:00
|
|
|
|
|
|
|
x = @5;
|
|
|
|
y = @6;
|
|
|
|
|
2013-10-21 15:08:31 -05:00
|
|
|
info!("*r = {}, exp = {}", *r, exp);
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(*r, exp);
|
2013-08-17 10:37:42 -05:00
|
|
|
assert_eq!(x, @5);
|
|
|
|
assert_eq!(y, @6);
|
2012-05-16 08:57:52 -05:00
|
|
|
}
|
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2012-05-16 08:57:52 -05:00
|
|
|
testfn(true);
|
|
|
|
testfn(false);
|
2013-02-14 13:47:00 -06:00
|
|
|
}
|