rust/src/test/run-pass/alt-unique-bind.rs

9 lines
109 B
Rust
Raw Normal View History

2012-06-04 22:56:40 -07:00
fn main() {
2012-08-06 12:34:08 -07:00
match ~100 {
2012-08-03 19:59:04 -07:00
~x => {
2012-08-22 17:24:52 -07:00
debug!("%?", x);
2012-06-04 22:56:40 -07:00
assert x == 100;
}
}
}