]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/borrowck-loan-vec-content.rs
200d208d140b69a054538222bf1d7d10c8fdf4a0
[rust.git] / src / test / compile-fail / borrowck-loan-vec-content.rs
1 // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // Here we check that it is allowed to lend out an element of a
12 // (locally rooted) mutable, unique vector, and that we then prevent
13 // modifications to the contents.
14
15 fn takes_imm_elt(_v: &int, f: ||) {
16     f();
17 }
18
19 fn has_mut_vec_and_does_not_try_to_change_it() {
20     let mut v = vec!(1, 2, 3);
21     takes_imm_elt(&v[0], || {})
22 }
23
24 fn has_mut_vec_but_tries_to_change_it() {
25     let mut v = vec!(1, 2, 3);
26     takes_imm_elt(
27         &v[0],
28         || { //~ ERROR cannot borrow `v` as mutable
29             v[1] = 4;
30         })
31 }
32
33 fn main() {
34 }