about summary refs log tree commit diff
path: root/tests/ui/rust-2018/removing-extern-crate.rs
blob: 844377945e02f7898c52f289c413b7e9c819ce00 (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)]

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() {}