about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2016-08-28 13:16:47 -0700
committerGitHub <noreply@github.com>2016-08-28 13:16:47 -0700
commit312734ca4295f6fa95c70d190ef297f926657155 (patch)
treea95518df5e98ecbe8b7d3baf7cff999887d16590
parente4791e086d671d429db864787f6b60547a28b0f5 (diff)
parent4853456be0efa376064148f480618985b076c196 (diff)
downloadrust-312734ca4295f6fa95c70d190ef297f926657155.tar.gz
rust-312734ca4295f6fa95c70d190ef297f926657155.zip
Auto merge of #36029 - KiChjang:issue-12033, r=arielb1
Fix lifetime rules for 'if' conditions

Fixes #12033.

Changes the temporary scope rules to make the condition of an if-then-else a terminating scope. This is a [breaking-change].
-rw-r--r--src/librustc/middle/region.rs3
-rw-r--r--src/test/run-pass/issue-12033.rs16
2 files changed, 18 insertions, 1 deletions
diff --git a/src/librustc/middle/region.rs b/src/librustc/middle/region.rs
index faf2f7dae08..ef905b51edf 100644
--- a/src/librustc/middle/region.rs
+++ b/src/librustc/middle/region.rs
@@ -803,7 +803,8 @@ fn resolve_expr(visitor: &mut RegionResolutionVisitor, expr: &hir::Expr) {
                 terminating(r.id);
             }
 
-            hir::ExprIf(_, ref then, Some(ref otherwise)) => {
+            hir::ExprIf(ref expr, ref then, Some(ref otherwise)) => {
+                terminating(expr.id);
                 terminating(then.id);
                 terminating(otherwise.id);
             }
diff --git a/src/test/run-pass/issue-12033.rs b/src/test/run-pass/issue-12033.rs
new file mode 100644
index 00000000000..5e1d82ce52c
--- /dev/null
+++ b/src/test/run-pass/issue-12033.rs
@@ -0,0 +1,16 @@
+// Copyright 2014 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.
+
+use std::cell::RefCell;
+
+fn main() {
+    let x = RefCell::new(0);
+    if *x.borrow() == 0 {} else {}
+}