make --enforce-mut-vars always on, add mut annotations to remaining files
This commit is contained in:
parent
ea6030878a
commit
dc07280b08
179 changed files with 519 additions and 508 deletions
|
@ -6,7 +6,7 @@ use std;
|
|||
|
||||
fn test_break() { loop { let x: @int = break; } }
|
||||
|
||||
fn test_cont() { let 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 = cont; } }
|
||||
|
||||
fn test_ret() { let x: @int = ret; }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue