rust/tests/ui/single_component_path_imports.stderr

17 lines
421 B
Plaintext
Raw Normal View History

2020-01-29 10:22:42 -06:00
error: this import is redundant
2021-10-23 02:42:52 -05:00
--> $DIR/single_component_path_imports.rs:23:5
2020-01-29 10:22:42 -06:00
|
2021-04-04 07:21:02 -05:00
LL | use regex;
| ^^^^^^^^^^ help: remove it entirely
2020-01-29 10:22:42 -06:00
|
= note: `-D clippy::single-component-path-imports` implied by `-D warnings`
2021-03-28 02:35:44 -05:00
error: this import is redundant
2021-10-23 02:42:52 -05:00
--> $DIR/single_component_path_imports.rs:5:1
2021-03-28 02:35:44 -05:00
|
2021-04-04 07:21:02 -05:00
LL | use regex;
| ^^^^^^^^^^ help: remove it entirely
2021-03-28 02:35:44 -05:00
error: aborting due to 2 previous errors
2020-01-29 10:22:42 -06:00