mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
17 lines
403 B
Rust
17 lines
403 B
Rust
// 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() {}
|