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

12 lines
290 B
Plaintext
Raw Normal View History

warning: the item `Bar` is imported redundantly
--> $DIR/use-redundant.rs:14:9
|
2019-03-16 11:38:12 -05:00
LL | use crate::foo::Bar;
| --------------- the item `Bar` was imported here
2019-03-16 11:38:12 -05:00
...
LL | use crate::foo::Bar;
| ^^^^^^^^^^^^^^^
|
= note: #[warn(redundant_import)] on by default