2011-05-17 19:35:37 -05:00
|
|
|
// Make sure we drop the refs of the temporaries needed to return the
|
|
|
|
// values from the else if branch
|
|
|
|
fn main() {
|
2011-07-27 07:19:39 -05:00
|
|
|
let y: vec[uint] = [10u];
|
|
|
|
let x = if false { y } else if (true) { y } else { y };
|
2011-06-15 13:19:50 -05:00
|
|
|
assert (y.(0) == 10u);
|
|
|
|
}
|