rust/src/test/ui/removing-extern-crate.rs
Tomasz Miąsko 427952e808 Make error and warning annotations mandatory in UI tests
This change makes error and warning annotations mandatory in UI tests.
The only exception are tests that use error patterns to match compiler
output and don't have any annotations.
2019-11-10 21:01:02 +01:00

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() {}