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