summaryrefslogtreecommitdiffstats
path: root/tests/ui/removing-extern-crate.rs
blob: 465e1360c2ad1f247e5021b52ac568a7fe5d5ec7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// edition:2018
// aux-build:removing-extern-crate.rs
// run-rustfix
// check-pass

#![warn(rust_2018_idioms)]

extern crate removing_extern_crate as foo; //~ WARNING unused extern crate
extern crate core; //~ WARNING unused extern crate

mod another {
    extern crate removing_extern_crate as foo; //~ WARNING unused extern crate
    extern crate core; //~ WARNING unused extern crate
}

fn main() {}