rust/src/test/run-pass/alt-pattern-simple.rs

8 lines
70 B
Rust
Raw Normal View History

fn altsimple(int f) {
alt (f) {
case (x) {}
}
}
fn main() {}