1
Fork 0

Switch 'cont' to 'again' everywhere. Close #2229.

This commit is contained in:
Graydon Hoare 2012-07-09 14:37:48 -07:00
parent 9afc8be04b
commit c26d02557e
28 changed files with 47 additions and 47 deletions

View file

@ -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; }