]> git.lizzy.rs Git - rust.git/blob - src/test/ui/use/use-nested-groups-unused-imports.stderr
Auto merge of #58406 - Disasm:rv64-support, r=nagisa
[rust.git] / src / test / ui / use / use-nested-groups-unused-imports.stderr
1 error: unused imports: `*`, `Foo`, `baz::{}`, `foobar::*`
2   --> $DIR/use-nested-groups-unused-imports.rs:16:11
3    |
4 LL | use foo::{Foo, bar::{baz::{}, foobar::*}, *};
5    |           ^^^        ^^^^^^^  ^^^^^^^^^   ^
6    |
7 note: lint level defined here
8   --> $DIR/use-nested-groups-unused-imports.rs:3:9
9    |
10 LL | #![deny(unused_imports)]
11    |         ^^^^^^^^^^^^^^
12
13 error: unused import: `*`
14   --> $DIR/use-nested-groups-unused-imports.rs:18:24
15    |
16 LL | use foo::bar::baz::{*, *};
17    |                        ^
18
19 error: unused import: `foo::{}`
20   --> $DIR/use-nested-groups-unused-imports.rs:20:5
21    |
22 LL | use foo::{};
23    |     ^^^^^^^
24
25 error: aborting due to 3 previous errors
26