blob: 844377945e02f7898c52f289c413b7e9c819ce00 [file] [log] [blame]
//@ edition:2018
//@ aux-build:dummy-crate.rs
//@ run-rustfix
//@ check-pass
#![warn(rust_2018_idioms)]
extern crate dummy_crate as foo; //~ WARNING unused extern crate
extern crate core; //~ WARNING unused extern crate
mod another {
extern crate dummy_crate as foo; //~ WARNING unused extern crate
extern crate core; //~ WARNING unused extern crate
}
fn main() {}