]> git.lizzy.rs Git - rust.git/commitdiff
Work around a borrow surviving too long (fixes #37686)
authorAnthony Ramine <n.oxyde@gmail.com>
Thu, 10 Nov 2016 12:09:34 +0000 (13:09 +0100)
committerAnthony Ramine <n.oxyde@gmail.com>
Thu, 10 Nov 2016 13:43:46 +0000 (14:43 +0100)
src/librustc_const_eval/pattern.rs
src/test/run-pass/issue-37686.rs [new file with mode: 0644]

index 10b2a7625cacfefa1140ec965188e48d1cb7d516..241920f2949f3354cec75c1c090a4f4222e4f83e 100644 (file)
@@ -223,7 +223,8 @@ pub fn lower_pattern(&mut self, pat: &hir::Pat) -> Pattern<'tcx> {
             }
 
             PatKind::Tuple(ref subpatterns, ddpos) => {
-                match self.tcx.tables().node_id_to_type(pat.id).sty {
+                let ty = self.tcx.tables().node_id_to_type(pat.id);
+                match ty.sty {
                     ty::TyTuple(ref tys) => {
                         let subpatterns =
                             subpatterns.iter()
diff --git a/src/test/run-pass/issue-37686.rs b/src/test/run-pass/issue-37686.rs
new file mode 100644 (file)
index 0000000..47881d4
--- /dev/null
@@ -0,0 +1,16 @@
+// Copyright 2016 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() {
+    match (0, 0) {
+        (std::usize::MIN, std::usize::MAX) => {}
+        _ => {}
+    }
+}