rust/src/test/run-pass/expr-if-box.rs

18 lines
296 B
Rust
Raw Normal View History

// -*- rust -*-
// Tests for if as expressions returning boxed types
fn test_box() {
2011-07-27 07:19:39 -05:00
let rs = if true { @100 } else { @101 };
assert (*rs == 100);
}
fn test_str() {
2011-07-27 07:19:39 -05:00
let rs = if true { "happy" } else { "sad" };
assert (rs == "happy");
}
fn main() { test_box(); test_str(); }