Skip to content

Commit 722d670

Browse files
committed
test: Fix botched regex. rs=bustage
1 parent 1f667e7 commit 722d670

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/test/run-pass/static-fn-inline-xc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
extern mod mycore(name ="static_fn_inline_xc_aux");
1515

16-
use my::core::num;
16+
use mycore::num;
1717

1818
fn main() {
1919
let _1:float = num::Num2::from_int2(1i);

src/test/run-pass/static-fn-trait-xc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
extern mod mycore(name ="static_fn_trait_xc_aux");
55

6-
use my::core::num;
6+
use mycore::num;
77

88
fn main() {
99
let _1:float = num::Num2::from_int2(1i);

src/test/run-pass/use.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ use x = zed::str;
2121
mod baz {
2222
#[legacy_exports];
2323
use bar::str;
24-
use x = ::core::str;
24+
use x = core::str;
2525
}
2626

2727
fn main() { }

0 commit comments

Comments
 (0)