2012-04-30 12:37:58 -05:00
|
|
|
fn foo(cond: bool) {
|
|
|
|
let x = 5;
|
2012-07-12 11:36:56 -05:00
|
|
|
let mut y: &blk/int = &x;
|
2012-04-30 12:37:58 -05:00
|
|
|
|
2012-07-12 11:36:56 -05:00
|
|
|
let mut z: &blk/int;
|
2012-04-30 12:37:58 -05:00
|
|
|
if cond {
|
|
|
|
z = &x;
|
|
|
|
} else {
|
2012-07-12 11:36:56 -05:00
|
|
|
let w: &blk/int = &x;
|
2012-06-30 06:23:59 -05:00
|
|
|
z = w; //~ ERROR mismatched types
|
2012-04-30 12:37:58 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
}
|