]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/assign_mutable_fields.rs
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / borrowck / assign_mutable_fields.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 // Currently, we permit you to assign to individual fields of a mut
12 // var, but we do not permit you to use the complete var afterwards.
13 // We hope to fix this at some point.
14 //
15 // FIXME(#21232)
16
17 fn assign_both_fields_and_use() {
18     let mut x: (u32, u32);
19     x.0 = 1;
20     x.1 = 22;
21     drop(x.0); //~ ERROR
22     drop(x.1); //~ ERROR
23 }
24
25 fn assign_both_fields_the_use_var() {
26     let mut x: (u32, u32);
27     x.0 = 1;
28     x.1 = 22;
29     drop(x); //~ ERROR
30 }
31
32 fn main() { }