Fix lifetime rules for 'if' conditions

This commit is contained in:
Keith Yeung 2016-08-26 19:58:31 -07:00
parent 1987131063
commit 4853456be0
2 changed files with 18 additions and 1 deletions

View File

@ -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);
}

View File

@ -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 {}
}