We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f667e7 commit 722d670Copy full SHA for 722d670
src/test/run-pass/static-fn-inline-xc.rs
@@ -13,7 +13,7 @@
13
14
extern mod mycore(name ="static_fn_inline_xc_aux");
15
16
-use my::core::num;
+use mycore::num;
17
18
fn main() {
19
let _1:float = num::Num2::from_int2(1i);
src/test/run-pass/static-fn-trait-xc.rs
@@ -3,7 +3,7 @@
3
4
extern mod mycore(name ="static_fn_trait_xc_aux");
5
6
7
8
9
src/test/run-pass/use.rs
@@ -21,7 +21,7 @@ use x = zed::str;
21
mod baz {
22
#[legacy_exports];
23
use bar::str;
24
- use x = ::core::str;
+ use x = core::str;
25
}
26
27
fn main() { }
0 commit comments