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

9 lines
104 B
Rust
Raw Normal View History

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