2013-03-15 14:24:24 -05: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.
|
|
|
|
|
|
|
|
// Note: the borrowck analysis is currently flow-insensitive.
|
|
|
|
// Therefore, some of these errors are marked as spurious and could be
|
|
|
|
// corrected by a simple change to the analysis. The others are
|
|
|
|
// either genuine or would require more advanced changes. The latter
|
|
|
|
// cases are noted.
|
|
|
|
|
2014-05-05 20:56:44 -05:00
|
|
|
|
2013-03-15 14:24:24 -05:00
|
|
|
fn borrow(_v: &int) {}
|
|
|
|
fn borrow_mut(_v: &mut int) {}
|
2014-10-09 14:17:22 -05:00
|
|
|
fn cond() -> bool { panic!() }
|
|
|
|
fn for_func(_f: || -> bool) { panic!() }
|
|
|
|
fn produce<T>() -> T { panic!(); }
|
2013-03-15 14:24:24 -05:00
|
|
|
|
2014-05-05 20:56:44 -05:00
|
|
|
fn inc(v: &mut Box<int>) {
|
|
|
|
*v = box() (**v + 1);
|
2013-03-15 14:24:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn pre_freeze_cond() {
|
|
|
|
// In this instance, the freeze is conditional and starts before
|
|
|
|
// the mut borrow.
|
|
|
|
|
2014-05-05 20:56:44 -05:00
|
|
|
let mut v = box 3;
|
2013-03-15 14:24:24 -05:00
|
|
|
let _w;
|
|
|
|
if cond() {
|
|
|
|
_w = &v;
|
|
|
|
}
|
2014-06-25 01:11:57 -05:00
|
|
|
borrow_mut(&mut *v); //~ ERROR cannot borrow
|
2013-03-15 14:24:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn pre_freeze_else() {
|
|
|
|
// In this instance, the freeze and mut borrow are on separate sides
|
|
|
|
// of the if.
|
|
|
|
|
2014-05-05 20:56:44 -05:00
|
|
|
let mut v = box 3;
|
2013-03-15 14:24:24 -05:00
|
|
|
let _w;
|
|
|
|
if cond() {
|
|
|
|
_w = &v;
|
|
|
|
} else {
|
2014-06-25 01:11:57 -05:00
|
|
|
borrow_mut(&mut *v);
|
2013-03-15 14:24:24 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|