mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-29 15:48:52 +00:00
17 lines
277 B
Rust
17 lines
277 B
Rust
//@ edition:2018
|
|
//@ aux-build:dummy-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() {}
|