Update a couple tests that slipped through.

This commit is contained in:
Graydon Hoare 2011-05-16 19:08:59 -07:00
parent 550667a538
commit cc27e0f8c6
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ use std;
import std::_vec;
fn some_vec(int x) -> vec[int] {
ret vec();
ret [];
}
fn is_odd(int n) -> bool { ret true; }

View File

@ -4,7 +4,7 @@ use std;
import std::_vec;
fn some_vec(int x) -> vec[int] {
ret vec();
ret [];
}
fn is_odd(int n) -> bool { ret true; }