rust/src/test/run-pass/alt-unique-bind.rs
2012-06-05 14:03:25 -07:00

9 lines
104 B
Rust

fn main() {
alt ~100 {
~x {
#debug("%?", x);
assert x == 100;
}
}
}