rust/src/test/run-pass/expr-alt-unique.rs
2012-08-06 15:36:30 -07:00

13 lines
203 B
Rust

// -*- rust -*-
// Tests for match as expressions resulting in boxed types
fn test_box() {
let res = match check true { true => { ~100 } };
assert (*res == 100);
}
fn main() { test_box(); }