mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
17 lines
283 B
Rust
17 lines
283 B
Rust
// 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() {}
|