File tree 2 files changed +4
-7
lines changed
2 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -22,9 +22,7 @@ mod name_pool {
22
22
mod rust {
23
23
#[ legacy_exports] ;
24
24
25
- import name_pool:: add;
26
- // FIXME #3155: this is a hack
27
- import name_pool:: __extensions__;
25
+ use name_pool:: add;
28
26
export add;
29
27
export rt;
30
28
export cx;
Original file line number Diff line number Diff line change 2
2
// name_pool::methods impl in the other crate is reachable from this
3
3
// crate.
4
4
5
- // xfail-test
6
5
// xfail-fast
7
6
// aux-build:crate-method-reexport-grrrrrrr2.rs
8
7
9
- use crate_method_reexport_grrrrrrr2;
8
+ extern mod crate_method_reexport_grrrrrrr2;
10
9
11
10
fn main ( ) {
12
- import crate_method_reexport_grrrrrrr2:: rust:: add;
13
- import crate_method_reexport_grrrrrrr2:: rust:: cx;
11
+ use crate_method_reexport_grrrrrrr2:: rust:: add;
12
+ use crate_method_reexport_grrrrrrr2:: rust:: cx;
14
13
let x = @( ) ;
15
14
x. cx ( ) ;
16
15
let y = ( ) ;
You can’t perform that action at this time.
0 commit comments