summary refs log tree commit diff
path: root/src/test/ui/removing-extern-crate.rs
blob: b9cc1810e7cb5b02ba4b800bf7f9d230402894d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// edition:2018
// aux-build:removing-extern-crate.rs
// run-rustfix
// compile-pass

#![warn(rust_2018_idioms)]
#![allow(unused_imports)]

extern crate removing_extern_crate as foo;
extern crate core;

mod another {
    extern crate removing_extern_crate as foo;
    extern crate core;
}

fn main() {}