1
Fork 0

Convert 'use' to 'extern mod'. Remove old 'use' syntax

This commit is contained in:
Brian Anderson 2012-09-11 17:46:20 -07:00
parent fb851242b7
commit ea01ee2e9e
274 changed files with 308 additions and 316 deletions

View file

@ -2,7 +2,7 @@
// Issue #787
// Don't try to clean up uninitialized locals
use std;
extern mod std;
fn test_break() { loop { let x: @int = break; } }