]> git.lizzy.rs Git - rust.git/commitdiff
Correctly detect reassignments to the interior of matched structs/tuples
authorBjörn Steinbrink <bsteinbr@gmail.com>
Mon, 13 Jul 2015 11:23:13 +0000 (13:23 +0200)
committerBjörn Steinbrink <bsteinbr@gmail.com>
Mon, 13 Jul 2015 11:23:13 +0000 (13:23 +0200)
If we match a whole struct or tuple, the "field" for the reassignment
checker will be "None" which means that mutating any field should count
as a reassignment.

Fixes #26996.

src/librustc_trans/trans/_match.rs
src/test/run-pass/issue-26996.rs [new file with mode: 0644]

index 3aa98ab031d1dcd8265df3c50639d66ca8d9ca25..9a9b9c617a85392f4a2cc573f281a64be064a636 100644 (file)
@@ -1384,7 +1384,8 @@ fn mutate(&mut self, _: ast::NodeId, _: Span, cmt: mc::cmt, _: euv::MutateMode)
                 match base_cmt.cat {
                     mc::cat_upvar(mc::Upvar { id: ty::UpvarId { var_id: vid, .. }, .. }) |
                     mc::cat_local(vid) => {
-                        self.reassigned |= self.node == vid && Some(field) == self.field
+                        self.reassigned |= self.node == vid &&
+                            (self.field.is_none() || Some(field) == self.field)
                     },
                     _ => {}
                 }
diff --git a/src/test/run-pass/issue-26996.rs b/src/test/run-pass/issue-26996.rs
new file mode 100644 (file)
index 0000000..e17845a
--- /dev/null
@@ -0,0 +1,19 @@
+// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+fn main() {
+    let mut c = (1, "".to_owned());
+    match c {
+        c2 => {
+            c.0 = 2;
+            assert_eq!(c2.0, 1);
+        }
+    }
+}