rust/src/test/compile-fail/bad-match.rs
2013-05-27 17:28:39 -04:00

7 lines
70 B
Rust

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