2018-01-24 16:32:17 -06:00
|
|
|
error: unused imports: `*`, `Foo`, `baz::{}`, `foobar::*`
|
|
|
|
--> $DIR/use-nested-groups-unused-imports.rs:26:11
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | use foo::{Foo, bar::{baz::{}, foobar::*}, *};
|
2018-01-24 16:32:17 -06:00
|
|
|
| ^^^ ^^^^^^^ ^^^^^^^^^ ^
|
|
|
|
|
|
|
|
|
note: lint level defined here
|
|
|
|
--> $DIR/use-nested-groups-unused-imports.rs:13:9
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | #![deny(unused_imports)]
|
2018-01-24 16:32:17 -06:00
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: unused import: `*`
|
|
|
|
--> $DIR/use-nested-groups-unused-imports.rs:28:24
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | use foo::bar::baz::{*, *};
|
2018-01-24 16:32:17 -06:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error: unused import: `use foo::{};`
|
|
|
|
--> $DIR/use-nested-groups-unused-imports.rs:30:1
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | use foo::{};
|
2018-01-24 16:32:17 -06:00
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|