rust/src/test/compile-fail/bad-alt.rs
2012-08-06 15:36:30 -07:00

7 lines
70 B
Rust

// error-pattern: expected
fn main() {
let int x = 5;
match x;
}