Convert alt to match. Stop parsing alt

This commit is contained in:
Brian Anderson 2012-08-06 12:34:08 -07:00
parent d3a9bb1bd4
commit ecaf9e39c9
359 changed files with 2938 additions and 2915 deletions

View file

@ -22,7 +22,7 @@ fn log_again() { loop { log(error, again); } }
fn ret_ret() -> int { return (return 2) + 3; }
fn ret_guard() {
alt 2 {
match 2 {
x if (return) => { x; }
_ => {}
}