mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
25 lines
452 B
Rust
25 lines
452 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::{}`, `foobar::*`
|
|
use foo::bar::baz::{*, *};
|
|
//~^ ERROR unused import: `*`
|
|
use foo::{};
|
|
//~^ ERROR unused import: `foo::{}`
|
|
|
|
fn main() {
|
|
let _: Bar;
|
|
}
|