mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
000e94e67d
Co-Authored-By: Vadim Petrochenkov <vadim.petrochenkov@gmail.com>
17 lines
388 B
Plaintext
17 lines
388 B
Plaintext
warning: the item `Foo` is imported redundantly
|
|
--> $DIR/use-redundant-glob.rs:11:9
|
|
|
|
|
LL | use bar::*;
|
|
| ------ the item `Foo` is already imported here
|
|
LL | use bar::Foo;
|
|
| ^^^^^^^^
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/use-redundant-glob.rs:2:9
|
|
|
|
|
LL | #![warn(unused_imports)]
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
warning: 1 warning emitted
|
|
|