rust/src/test/run-pass/keyword-changes-2012-07-31.rs
2012-08-06 15:36:30 -07:00

15 lines
140 B
Rust

// return -> return
// mod -> module
// match -> match
fn main() {
}
mod foo {
}
fn bar() -> int {
match 0 {
_ => { 0 }
}
}