rust-clippy/tests/ui/single_component_path_imports.stderr

17 lines
421 B
Text
Raw Normal View History

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