summaryrefslogtreecommitdiffstats
path: root/tests/ui/removing-extern-crate.fixed
blob: 8dbd0395b97bd012d6af16b416acb4198e253bb4 (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)]

 //~ WARNING unused extern crate
 //~ WARNING unused extern crate

mod another {
     //~ WARNING unused extern crate
     //~ WARNING unused extern crate
}

fn main() {}