Update error message and un-xfail test

This commit is contained in:
Tim Chevalier 2012-11-15 18:59:46 -08:00
parent 39c306eeef
commit 9d6ab9ae23

View File

@ -1,12 +1,11 @@
// xfail-test
fn foo(cond: bool) {
// Here we will infer a type that uses the
// region of the if stmt then block:
let mut x; //~ ERROR foo
let mut x;
if cond {
x = &3;
x = &3; //~ ERROR illegal borrow: borrowed value does not live long enough
assert (*x == 3);
}
}