blob: a7c76e68d3a3fb971bb9b66b6e72820ebcfe57c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//@ run-pass
//@ aux-build:some_crate.rs
//@ compile-flags:--extern some_crate
//@ edition:2018
mod foo {
pub use some_crate;
}
fn main() {
::some_crate::hello();
foo::some_crate::hello();
}
|