13 lines
208 B
Rust
13 lines
208 B
Rust
|
|
|
|
|
|
// -*- rust -*-
|
|
|
|
// Tests for match as expressions resulting in boxed types
|
|
fn test_box() {
|
|
let res = match true { true => { ~100 }, _ => fail };
|
|
assert (*res == 100);
|
|
}
|
|
|
|
fn main() { test_box(); }
|