518dc52f85
This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[]
18 lines
296 B
Rust
18 lines
296 B
Rust
|
|
|
|
|
|
// -*- rust -*-
|
|
|
|
// Tests for if as expressions returning boxed types
|
|
fn test_box() {
|
|
let rs = if true { @100 } else { @101 };
|
|
assert (*rs == 100);
|
|
}
|
|
|
|
fn test_str() {
|
|
let rs = if true { "happy" } else { "sad" };
|
|
assert (rs == "happy");
|
|
}
|
|
|
|
fn main() { test_box(); test_str(); }
|