rust/tests/ui/borrowck/borrowck-loan-vec-content.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
586 B
Rust
Raw Normal View History

2012-05-12 05:42:31 +08:00
// Here we check that it is allowed to lend out an element of a
// (locally rooted) mutable, unique vector, and that we then prevent
// modifications to the contents.
fn takes_imm_elt<F>(_v: &isize, f: F) where F: FnOnce() {
2012-05-12 05:42:31 +08:00
f();
}
fn has_mut_vec_and_does_not_try_to_change_it() {
let mut v: Vec<isize> = vec![1, 2, 3];
takes_imm_elt(&v[0], || {})
2012-05-12 05:42:31 +08:00
}
fn has_mut_vec_but_tries_to_change_it() {
let mut v: Vec<isize> = vec![1, 2, 3];
takes_imm_elt(
&v[0],
|| { //~ ERROR cannot borrow `v` as mutable
2014-11-07 01:25:16 +08:00
v[1] = 4;
})
2012-05-12 05:42:31 +08:00
}
fn main() {
}