Switch 'cont' to 'again' everywhere. Close #2229.
This commit is contained in:
parent
9afc8be04b
commit
c26d02557e
28 changed files with 47 additions and 47 deletions
|
@ -6,7 +6,7 @@ use std;
|
|||
|
||||
fn test_break() { loop { let x: @int = break; } }
|
||||
|
||||
fn test_cont() { let mut i = 0; while i < 1 { i += 1; let x: @int = cont; } }
|
||||
fn test_cont() { let mut i = 0; while i < 1 { i += 1; let x: @int = again; } }
|
||||
|
||||
fn test_ret() { let x: @int = ret; }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue