2012-12-10 19:32:48 -06:00
|
|
|
// Copyright 2012 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.
|
|
|
|
|
2012-04-30 12:37:58 -05:00
|
|
|
fn foo(cond: bool) {
|
|
|
|
let x = 5;
|
2013-03-14 13:22:51 -05:00
|
|
|
let mut y: &'blk int = &x;
|
2012-04-30 12:37:58 -05:00
|
|
|
|
2013-03-14 13:22:51 -05:00
|
|
|
let mut z: &'blk int;
|
2012-04-30 12:37:58 -05:00
|
|
|
if cond {
|
2012-08-13 17:06:13 -05:00
|
|
|
z = &x; //~ ERROR cannot infer an appropriate lifetime due to conflicting requirements
|
2012-04-30 12:37:58 -05:00
|
|
|
} else {
|
2013-03-14 13:22:51 -05:00
|
|
|
let w: &'blk int = &x;
|
2012-08-13 17:06:13 -05:00
|
|
|
z = w;
|
2012-04-30 12:37:58 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2012-08-13 17:06:13 -05:00
|
|
|
}
|