2019-02-22 08:07:18 -06:00
|
|
|
warning: the item `Bar` is imported redundantly
|
2019-03-17 05:38:38 -05:00
|
|
|
--> $DIR/use-redundant.rs:15:9
|
2019-02-22 08:07:18 -06:00
|
|
|
|
|
2019-03-16 11:38:12 -05:00
|
|
|
LL | use crate::foo::Bar;
|
2019-03-17 05:38:38 -05:00
|
|
|
| --------------- the item `Bar` was already imported here
|
2019-03-16 11:38:12 -05:00
|
|
|
...
|
|
|
|
LL | use crate::foo::Bar;
|
2019-02-22 08:07:18 -06:00
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
2019-03-17 05:38:38 -05:00
|
|
|
note: lint level defined here
|
|
|
|
--> $DIR/use-redundant.rs:2:9
|
|
|
|
|
|
|
|
|
LL | #![warn(unused_imports)]
|
|
|
|
| ^^^^^^^^^^^^^^
|
2019-02-22 08:07:18 -06:00
|
|
|
|