summary refs log tree commit diff
path: root/src/test/ui/borrowck/borrowck-loan-blocks-mut-uniq.rs
blob: da30bfa29bbf7ad336a130d9b1d928c2a67928e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![feature(box_syntax)]

fn borrow<F>(v: &isize, f: F) where F: FnOnce(&isize) {
    f(v);
}

fn box_imm() {
    let mut v: Box<_> = box 3;
    borrow(&*v,
           |w| { //~ ERROR cannot borrow `v` as mutable
            v = box 4;
            assert_eq!(*v, 3);
            assert_eq!(*w, 4);
        })
}

fn main() {
}