test: Fix botched regex. rs=bustage

This commit is contained in:
Patrick Walton 2013-01-08 10:35:20 -08:00
parent 1f667e7995
commit 722d670c85
3 changed files with 3 additions and 3 deletions

View file

@ -13,7 +13,7 @@
extern mod mycore(name ="static_fn_inline_xc_aux");
use my::core::num;
use mycore::num;
fn main() {
let _1:float = num::Num2::from_int2(1i);

View file

@ -3,7 +3,7 @@
extern mod mycore(name ="static_fn_trait_xc_aux");
use my::core::num;
use mycore::num;
fn main() {
let _1:float = num::Num2::from_int2(1i);

View file

@ -21,7 +21,7 @@ use x = zed::str;
mod baz {
#[legacy_exports];
use bar::str;
use x = ::core::str;
use x = core::str;
}
fn main() { }