rust/src/test/ui/lint/use-redundant.stderr

16 lines
372 B
Plaintext
Raw Normal View History

warning: the item `Bar` is imported redundantly
2019-03-17 05:38:38 -05:00
--> $DIR/use-redundant.rs:15:9
|
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-03-17 05:38:38 -05:00
note: lint level defined here
--> $DIR/use-redundant.rs:2:9
|
LL | #![warn(unused_imports)]
| ^^^^^^^^^^^^^^