Fixing tests
This commit is contained in:
parent
b59895847e
commit
a67a3b7749
2 changed files with 2 additions and 2 deletions
|
@ -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)];
|
||||||
}
|
}
|
||||||
|
|
|
@ -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]; }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue