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

9 lines
109 B
Rust

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