diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2013-10-01 14:31:03 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2013-10-01 15:53:13 -0700 |
| commit | 4f67dcb24adb1e23f04e624fcbaf2328b82491b6 (patch) | |
| tree | e4e85184b26851431e419b8867c560863c204de8 /src/libsyntax/ast_util.rs | |
| parent | 4af849bc12e8a2ec592074b1470464efa59f06bf (diff) | |
| download | rust-4f67dcb24adb1e23f04e624fcbaf2328b82491b6.tar.gz rust-4f67dcb24adb1e23f04e624fcbaf2328b82491b6.zip | |
Migrate users of 'loop' to 'continue'
Closes #9467
Diffstat (limited to 'src/libsyntax/ast_util.rs')
| -rw-r--r-- | src/libsyntax/ast_util.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsyntax/ast_util.rs b/src/libsyntax/ast_util.rs index f93fc1e81da..f0e64b1830e 100644 --- a/src/libsyntax/ast_util.rs +++ b/src/libsyntax/ast_util.rs @@ -1057,12 +1057,12 @@ mod test { Mark(mrk,tail) => { result.push(M(mrk)); sc = tail; - loop; + continue; }, Rename(id,name,tail) => { result.push(R(id,name)); sc = tail; - loop; + continue; } IllegalCtxt => fail2!("expected resolvable context, got IllegalCtxt") } |
