rust/src/test/run-pass/alt-unique-bind.rs
2012-08-23 11:14:14 -07:00

9 lines
109 B
Rust

fn main() {
match ~100 {
~x => {
debug!("%?", x);
assert x == 100;
}
}
}