1
Fork 0

Fixing tests

This commit is contained in:
Alex Crichton 2014-01-31 22:11:18 -08:00
parent b59895847e
commit a67a3b7749
2 changed files with 2 additions and 2 deletions

View file

@ -10,6 +10,6 @@
enum State { ST_NULL, ST_WHITESPACE = 1 } enum State { ST_NULL, ST_WHITESPACE = 1 }
fn main() { pub fn main() {
~[ST_NULL, ..(ST_WHITESPACE as uint)]; ~[ST_NULL, ..(ST_WHITESPACE as uint)];
} }

View file

@ -8,4 +8,4 @@
// option. This file may not be copied, modified, or distributed // option. This file may not be copied, modified, or distributed
// except according to those terms. // except according to those terms.
fn main() { let _a = [0, ..1 as uint]; } pub fn main() { let _a = [0, ..1 as uint]; }