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

10 lines
No EOL
108 B
Rust

fn simple() {
match ~true {
~true => { }
_ => { fail; }
}
}
fn main() {
simple();
}