mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
27 lines
687 B
Plaintext
27 lines
687 B
Plaintext
error: unused imports: `*`, `Foo`, `baz::{}`, `foobar::*`
|
|
--> $DIR/use-nested-groups-unused-imports.rs:15:11
|
|
|
|
|
LL | use foo::{Foo, bar::{baz::{}, foobar::*}, *};
|
|
| ^^^ ^^^^^^^ ^^^^^^^^^ ^
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/use-nested-groups-unused-imports.rs:2:9
|
|
|
|
|
LL | #![deny(unused_imports)]
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
error: unused import: `*`
|
|
--> $DIR/use-nested-groups-unused-imports.rs:17:24
|
|
|
|
|
LL | use foo::bar::baz::{*, *};
|
|
| ^
|
|
|
|
error: unused import: `foo::{}`
|
|
--> $DIR/use-nested-groups-unused-imports.rs:19:5
|
|
|
|
|
LL | use foo::{};
|
|
| ^^^^^^^
|
|
|
|
error: aborting due to 3 previous errors
|
|
|