1
Fork 0

Convert ret to return

This commit is contained in:
Brian Anderson 2012-08-01 17:30:05 -07:00
parent dc499f193e
commit b355936b4d
456 changed files with 3875 additions and 3798 deletions

View file

@ -8,7 +8,7 @@ fn test_break() { loop { let x: @int = break; } }
fn test_cont() { let mut i = 0; while i < 1 { i += 1; let x: @int = again; } }
fn test_ret() { let x: @int = ret; }
fn test_ret() { let x: @int = return; }
fn test_fail() {
fn f() { let x: @int = fail; }