2019-04-25 06:53:06 +00:00
|
|
|
// aux-build:foo.rs
|
|
|
|
// compile-flags:--extern foo
|
2019-10-29 00:00:00 +00:00
|
|
|
// build-pass
|
2019-04-25 06:53:06 +00:00
|
|
|
// edition:2018
|
|
|
|
|
|
|
|
#![deny(unused_extern_crates)]
|
|
|
|
|
|
|
|
extern crate foo as foo_renamed;
|
|
|
|
|
|
|
|
pub mod m {
|
|
|
|
pub use foo_renamed::Foo;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|