]> git.proxmox.com Git - rustc.git/blob - tests/ui/lint/use-redundant/use-redundant-glob-parent.stderr
New upstream version 1.70.0+dfsg1
[rustc.git] / tests / ui / lint / use-redundant / use-redundant-glob-parent.stderr
1 warning: the item `Foo` is imported redundantly
2 --> $DIR/use-redundant-glob-parent.rs:12:9
3 |
4 LL | use bar::*;
5 | ------ the item `Foo` is already imported here
6 ...
7 LL | use bar::Foo;
8 | ^^^^^^^^
9 |
10 note: the lint level is defined here
11 --> $DIR/use-redundant-glob-parent.rs:2:9
12 |
13 LL | #![warn(unused_imports)]
14 | ^^^^^^^^^^^^^^
15
16 warning: 1 warning emitted
17