rust/src/test/run-pass/keyword-changes-2012-07-31.rs

15 lines
135 B
Rust
Raw Normal View History

2012-08-01 19:30:05 -05:00
// return -> return
// mod -> module
// alt -> match
fn main() {
}
mod foo {
}
fn bar() -> int {
match 0 {
_ { 0 }
}
}