blob: 22fdfc2b0ec9c659e6b10357ba0d5fb85cc8d410 [file] [log] [blame]
// edition:2018
// aux-build:removing-extern-crate.rs
// run-rustfix
// build-pass (FIXME(62277): could be check-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() {}