]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/issue-40288.rs
b5418e85bec784b04afc64488c57009701132eb2
[rust.git] / src / test / compile-fail / issue-40288.rs
1 // Copyright 2017 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 fn save_ref<'a>(refr: &'a i32, to: &mut [&'a i32]) {
12     for val in &mut *to {
13         *val = refr;
14     }
15 }
16
17 fn main() {
18     let ref init = 0i32;
19     let ref mut refr = 1i32;
20
21     let mut out = [init];
22
23     save_ref(&*refr, &mut out);
24
25     // This shouldn't be allowed as `refr` is borrowed
26     *refr = 3; //~ ERROR cannot assign to `*refr` because it is borrowed
27
28     // Prints 3?!
29     println!("{:?}", out[0]);
30 }