518dc52f85
This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[]
8 lines
225 B
Rust
8 lines
225 B
Rust
// Make sure we drop the refs of the temporaries needed to return the
|
|
// values from the else if branch
|
|
fn main() {
|
|
let y: @uint = @10u;
|
|
let x = if false { y } else if true { y } else { y };
|
|
assert (*y == 10u);
|
|
}
|