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

9 lines
107 B
Rust
Raw Normal View History

2012-06-05 00:56:40 -05:00
fn main() {
alt ~100 {
2012-08-03 21:59:04 -05:00
~x => {
debug!{"%?", x};
2012-06-05 00:56:40 -05:00
assert x == 100;
}
}
}