about summary refs log tree commit diff
path: root/tests/ui/rust-2018/removing-extern-crate.fixed
blob: e88a84cc93e2ae0f6fcd490a47ba260ffae2a357 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//@ edition:2018
//@ aux-build:dummy-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() {}