Skip to content

Commit

Permalink
Auto merge of #36029 - KiChjang:issue-12033, r=arielb1
Browse files Browse the repository at this point in the history
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].
  • Loading branch information
bors authored Aug 28, 2016
2 parents e4791e0 + 4853456 commit 312734c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/librustc/middle/region.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
16 changes: 16 additions & 0 deletions src/test/run-pass/issue-12033.rs
Original file line number Diff line number Diff line change
@@ -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 {}
}

0 comments on commit 312734c

Please sign in to comment.