mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
19 lines
530 B
Rust
19 lines
530 B
Rust
// There should be *one* unused import error.
|
|
#![deny(unused_imports)]
|
|
|
|
mod qux {
|
|
fn quz() {}
|
|
pub fn quy() {}
|
|
}
|
|
|
|
use qux::quz; //~ ERROR function `quz` is private
|
|
use qux::bar; //~ ERROR unresolved import `qux::bar`
|
|
use foo::bar; //~ ERROR unresolved import `foo`
|
|
use baz::*; //~ ERROR unresolved import `baz`
|
|
use qux::bar2; //~ ERROR unresolved import `qux::bar2`
|
|
use foo2::bar2;//~ ERROR unresolved import `foo2`
|
|
use baz2::*; //~ ERROR unresolved import `baz2`
|
|
use qux::quy; //~ ERROR unused import
|
|
|
|
fn main() {}
|