Skip to content

Commit f8ee9d9

Browse files
committed
moved renamed auxiliary | crate-method-reexport-grrrrrrr.rs
1 parent 51f5a37 commit f8ee9d9

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

tests/ui/auxiliary/crate-method-reexport-grrrrrrr2.rs renamed to tests/ui/cross-crate/auxiliary/method_reexport_aux.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![crate_name="crate_method_reexport_grrrrrrr2"]
1+
#![crate_name="method_reexport_aux"]
22

33
pub use name_pool::add;
44

tests/ui/crate-method-reexport-grrrrrrr.rs renamed to tests/ui/cross-crate/cross-crate-method-reexport.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
// name_pool::methods impl in the other crate is reachable from this
55
// crate.
66

7-
//@ aux-build:crate-method-reexport-grrrrrrr2.rs
7+
//@ aux-build:method_reexport_aux.rs
88

9-
extern crate crate_method_reexport_grrrrrrr2;
9+
extern crate method_reexport_aux;
1010

1111
pub fn main() {
12-
use crate_method_reexport_grrrrrrr2::rust::add;
13-
use crate_method_reexport_grrrrrrr2::rust::cx;
12+
use method_reexport_aux::rust::add;
13+
use method_reexport_aux::rust::cx;
1414
let x: Box<_> = Box::new(());
1515
x.cx();
1616
let y = ();

0 commit comments

Comments
 (0)