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