rust/tests/ui/use/use-nested-groups-unused-imports.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
687 B
Plaintext
Raw Normal View History

2018-01-24 22:32:17 +00:00
error: unused imports: `*`, `Foo`, `baz::{}`, `foobar::*`
--> $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::*}, *};
| ^^^ ^^^^^^^ ^^^^^^^^^ ^
2018-01-24 22:32:17 +00:00
|
2020-01-22 23:57:38 +00:00
note: the lint level is defined here
--> $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: `*`
--> $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::{*, *};
| ^
2018-01-24 22:32:17 +00:00
2018-12-09 16:40:49 +00:00
error: unused import: `foo::{}`
--> $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::{};
| ^^^^^^^
2018-01-24 22:32:17 +00:00
error: aborting due to 3 previous errors