auto merge of #6664 : catamorphism/rust/issue-3796, r=catamorphism

This commit is contained in:
bors 2013-05-21 15:07:24 -07:00
commit 799f281b43
3 changed files with 36 additions and 1 deletions

View File

@ -9,7 +9,7 @@
// except according to those terms.
// xfail-test
fn foo() -> &'a int {
fn foo<'a>() -> &'a int { //~ ERROR unconstrained region
return &x;
}
static x: int = 5;

View File

@ -0,0 +1,16 @@
// Copyright 2013 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.
// xfail-test
fn main() {
let mut x = ~3;
x = x;
assert_eq!(*x, 3);
}

View File

@ -0,0 +1,19 @@
// Copyright 2013 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.
// xfail-test
#[deny(dead_assignment)];
fn main() {
let mut x = 1;
let f: &fn() -> int = || { x + 20 };
assert_eq!(f(), 21);
x += 1;
assert_eq!(f(), 22);
}