2018-01-24 16:32:17 -06:00
|
|
|
error: unused imports: `*`, `Foo`, `baz::{}`, `foobar::*`
|
2021-07-20 22:23:22 -05:00
|
|
|
--> $DIR/use-nested-groups-unused-imports.rs:15:11
|
2018-01-24 16:32:17 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | use foo::{Foo, bar::{baz::{}, foobar::*}, *};
|
2019-02-11 13:16:22 -06:00
|
|
|
| ^^^ ^^^^^^^ ^^^^^^^^^ ^
|
2018-01-24 16:32:17 -06:00
|
|
|
|
|
2020-01-22 17:57:38 -06:00
|
|
|
note: the lint level is defined here
|
2021-07-20 22:23:22 -05:00
|
|
|
--> $DIR/use-nested-groups-unused-imports.rs:2:9
|
2018-01-24 16:32:17 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | #![deny(unused_imports)]
|
2018-01-24 16:32:17 -06:00
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: unused import: `*`
|
2021-07-20 22:23:22 -05:00
|
|
|
--> $DIR/use-nested-groups-unused-imports.rs:17:24
|
2018-01-24 16:32:17 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | use foo::bar::baz::{*, *};
|
2019-02-11 13:16:22 -06:00
|
|
|
| ^
|
2018-01-24 16:32:17 -06:00
|
|
|
|
2018-12-09 10:40:49 -06:00
|
|
|
error: unused import: `foo::{}`
|
2021-07-20 22:23:22 -05:00
|
|
|
--> $DIR/use-nested-groups-unused-imports.rs:19:5
|
2018-01-24 16:32:17 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | use foo::{};
|
2019-02-11 13:16:22 -06:00
|
|
|
| ^^^^^^^
|
2018-01-24 16:32:17 -06:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|