rust/src/test/compile-fail/bad-alt.rs
2011-07-27 15:54:33 +02:00

7 lines
69 B
Rust

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