8ee79c79aa
Fixes #2806 Fixes #3197 Fixes #3138
16 lines
282 B
Rust
16 lines
282 B
Rust
fn foo(cond: bool) {
|
|
let x = 5;
|
|
let mut y: &blk/int = &x;
|
|
|
|
let mut z: &blk/int;
|
|
if cond {
|
|
z = &x; //~ ERROR cannot infer an appropriate lifetime due to conflicting requirements
|
|
} else {
|
|
let w: &blk/int = &x;
|
|
z = w;
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
}
|