2011-09-23 16:58:06 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// -*- rust -*-
|
|
|
|
|
2012-08-06 14:34:08 -05:00
|
|
|
// Tests for match as expressions resulting in boxed types
|
2012-02-15 02:40:42 -06:00
|
|
|
fn test_box() {
|
2012-08-23 16:44:58 -05:00
|
|
|
let res = match true { true => { ~100 }, _ => fail };
|
2012-02-15 02:40:42 -06:00
|
|
|
assert (*res == 100);
|
|
|
|
}
|
2011-09-23 16:58:06 -05:00
|
|
|
|
|
|
|
fn main() { test_box(); }
|