Update error message and un-xfail test
This commit is contained in:
parent
39c306eeef
commit
9d6ab9ae23
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user