mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
24 lines
456 B
Rust
24 lines
456 B
Rust
#![allow(dead_code)]
|
|
#![deny(unused_imports)]
|
|
|
|
mod foo {
|
|
pub mod bar {
|
|
pub mod baz {
|
|
pub struct Bar();
|
|
}
|
|
pub mod foobar {}
|
|
}
|
|
|
|
pub struct Foo();
|
|
}
|
|
|
|
use foo::{Foo, bar::{baz::{}, foobar::*}, *};
|
|
//~^ ERROR unused imports: `*`, `Foo`, `baz::{}`, and `foobar::*`
|
|
use foo::bar::baz::{*, *};
|
|
//~^ ERROR unused import: `*`
|
|
use foo::{};
|
|
//~^ ERROR unused import: `foo::{}`
|
|
|
|
fn main() {
|
|
let _: Bar;
|
|
}
|