rust/src/test/ui/removing-extern-crate.rs
2018-12-25 21:08:33 -07:00

18 lines
303 B
Rust

// edition:2018
// aux-build:removing-extern-crate.rs
// run-rustfix
// compile-pass
#![warn(rust_2018_idioms)]
#![allow(unused_imports)]
extern crate removing_extern_crate as foo;
extern crate core;
mod another {
extern crate removing_extern_crate as foo;
extern crate core;
}
fn main() {}