mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 07:00:47 +00:00
17 lines
287 B
Plaintext
17 lines
287 B
Plaintext
//@ 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() {}
|