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

15 lines
140 B
Rust
Raw Normal View History

2012-08-01 17:30:05 -07:00
// return -> return
// mod -> module
2012-08-06 12:34:08 -07:00
// match -> match
fn main() {
}
mod foo {
}
fn bar() -> int {
match 0 {
2012-08-03 19:59:04 -07:00
_ => { 0 }
}
}