Fix warnings it tests

This commit is contained in:
Erick Tryzelaar 2013-08-17 08:37:42 -07:00
parent e20d46056d
commit ad5c676853
400 changed files with 701 additions and 581 deletions

View file

@ -16,9 +16,9 @@ static BAR:uint = Bunny as uint;
static BAR2:uint = BAR;
fn main() {
let v = [0, .. Bunny as uint];
let v = [0, .. BAR];
let v = [0, .. BAR2];
let _v = [0, .. Bunny as uint];
let _v = [0, .. BAR];
let _v = [0, .. BAR2];
static BAR3:uint = BAR2;
let v = [0, .. BAR3];
}
let _v = [0, .. BAR3];
}