rust-clippy/tests/ui/single_component_path_imports.stderr

18 lines
520 B
Text
Raw Normal View History

error: this import is redundant
2024-02-17 12:16:29 +00:00
--> tests/ui/single_component_path_imports.rs:6:1
|
LL | use regex;
| ^^^^^^^^^^ help: remove it entirely
|
= note: `-D clippy::single-component-path-imports` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::single_component_path_imports)]`
2020-01-29 16:22:42 +00:00
error: this import is redundant
2024-02-17 12:16:29 +00:00
--> tests/ui/single_component_path_imports.rs:32:5
2020-01-29 16:22:42 +00:00
|
LL | use regex;
| ^^^^^^^^^^ help: remove it entirely
2020-01-29 16:22:42 +00:00
error: aborting due to 2 previous errors
2020-01-29 16:22:42 +00:00