79 lines
2.2 KiB
Rust
79 lines
2.2 KiB
Rust
|
// compile-flags:--borrowck=err
|
||
|
|
||
|
// 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.
|
||
|
|
||
|
fn borrow(_v: &int) {}
|
||
|
|
||
|
fn inc(v: &mut ~int) {
|
||
|
*v = ~(**v + 1);
|
||
|
}
|
||
|
|
||
|
fn post_aliased_const() {
|
||
|
let mut v = ~3;
|
||
|
borrow(v);
|
||
|
let _w = &const v;
|
||
|
}
|
||
|
|
||
|
fn post_aliased_mut() {
|
||
|
// SPURIOUS--flow
|
||
|
let mut v = ~3;
|
||
|
borrow(v); //! ERROR loan of mutable local variable as immutable conflicts with prior loan
|
||
|
let _w = &mut v; //! NOTE prior loan as mutable granted here
|
||
|
}
|
||
|
|
||
|
fn post_aliased_scope(cond: bool) {
|
||
|
// NDM--scope of &
|
||
|
let mut v = ~3;
|
||
|
borrow(v); //! ERROR loan of mutable local variable as immutable conflicts with prior loan
|
||
|
if cond { inc(&mut v); } //! NOTE prior loan as mutable granted here
|
||
|
}
|
||
|
|
||
|
fn loop_aliased_mut() {
|
||
|
let mut v = ~3, w = ~4;
|
||
|
let mut _x = &mut w;
|
||
|
loop {
|
||
|
borrow(v); //! ERROR loan of mutable local variable as immutable conflicts with prior loan
|
||
|
_x = &mut v; //! NOTE prior loan as mutable granted here
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn while_aliased_mut(cond: bool) {
|
||
|
let mut v = ~3, w = ~4;
|
||
|
let mut _x = &mut w;
|
||
|
while cond {
|
||
|
borrow(v); //! ERROR loan of mutable local variable as immutable conflicts with prior loan
|
||
|
_x = &mut v; //! NOTE prior loan as mutable granted here
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn while_aliased_mut_cond(cond: bool, cond2: bool) {
|
||
|
let mut v = ~3, w = ~4;
|
||
|
let mut _x = &mut w;
|
||
|
while cond {
|
||
|
borrow(v); //! ERROR loan of mutable local variable as immutable conflicts with prior loan
|
||
|
if cond2 {
|
||
|
_x = &mut v; //! NOTE prior loan as mutable granted here
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn at_most_once_block() {
|
||
|
fn at_most_once(f: fn()) { f() }
|
||
|
|
||
|
// Here, the borrow check has no way of knowing that the block is
|
||
|
// executed at most once.
|
||
|
|
||
|
let mut v = ~3, w = ~4;
|
||
|
let mut _x = &mut w;
|
||
|
at_most_once {||
|
||
|
borrow(v); //! ERROR loan of mutable local variable as immutable conflicts with prior loan
|
||
|
_x = &mut v; //! NOTE prior loan as mutable granted here
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {}
|