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 51f5a37 commit f8ee9d9Copy full SHA for f8ee9d9
tests/ui/auxiliary/crate-method-reexport-grrrrrrr2.rs renamed to tests/ui/cross-crate/auxiliary/method_reexport_aux.rs
@@ -1,4 +1,4 @@
1
-#![crate_name="crate_method_reexport_grrrrrrr2"]
+#![crate_name="method_reexport_aux"]
2
3
pub use name_pool::add;
4
tests/ui/crate-method-reexport-grrrrrrr.rs renamed to tests/ui/cross-crate/cross-crate-method-reexport.rs
@@ -4,13 +4,13 @@
// name_pool::methods impl in the other crate is reachable from this
5
// crate.
6
7
-//@ aux-build:crate-method-reexport-grrrrrrr2.rs
+//@ aux-build:method_reexport_aux.rs
8
9
-extern crate crate_method_reexport_grrrrrrr2;
+extern crate method_reexport_aux;
10
11
pub fn main() {
12
- use crate_method_reexport_grrrrrrr2::rust::add;
13
- use crate_method_reexport_grrrrrrr2::rust::cx;
+ use method_reexport_aux::rust::add;
+ use method_reexport_aux::rust::cx;
14
let x: Box<_> = Box::new(());
15
x.cx();
16
let y = ();
0 commit comments