9 lines
109 B
Rust
9 lines
109 B
Rust
fn main() {
|
|
match ~100 {
|
|
~x => {
|
|
debug!("%?", x);
|
|
assert x == 100;
|
|
}
|
|
}
|
|
}
|