2022-11-21 20:34:47 +01:00
|
|
|
error: this import is redundant
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/single_component_path_imports_nested_first.rs:4:1
|
2022-11-21 20:34:47 +01:00
|
|
|
|
|
|
|
|
LL | use regex;
|
|
|
|
| ^^^^^^^^^^ help: remove it entirely
|
|
|
|
|
|
|
|
|
= note: `-D clippy::single-component-path-imports` implied by `-D warnings`
|
2023-08-01 14:02:21 +02:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::single_component_path_imports)]`
|
2022-11-21 20:34:47 +01:00
|
|
|
|
2021-04-22 11:31:13 +02:00
|
|
|
error: this import is redundant
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/single_component_path_imports_nested_first.rs:17:10
|
2021-04-22 11:31:13 +02:00
|
|
|
|
|
|
|
|
LL | use {regex, serde};
|
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
|
= help: remove this import
|
|
|
|
|
|
|
|
error: this import is redundant
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/single_component_path_imports_nested_first.rs:17:17
|
2021-04-22 11:31:13 +02:00
|
|
|
|
|
|
|
|
LL | use {regex, serde};
|
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
|
= help: remove this import
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|