rust/src/test/compile-fail/borrowck-loan-blocks-mut-uniq.rs

16 lines
350 B
Rust
Raw Normal View History

fn borrow(v: &int, f: fn(x: &int)) {
f(v);
}
fn box_imm() {
let mut v = ~3;
2012-06-30 18:19:07 -05:00
do borrow(v) |w| { //! NOTE loan of mutable local variable granted here
v = ~4; //! ERROR assigning to mutable variable declared in an outer block prohibited due to outstanding loan
assert *v == 3;
assert *w == 4;
}
}
fn main() {
}