rust/tests/ui/single_component_path_imports_nested_first.stderr

28 lines
762 B
Plaintext
Raw Normal View History

error: this import is redundant
2024-02-17 06:16:29 -06:00
--> tests/ui/single_component_path_imports_nested_first.rs:4: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)]`
error: this import is redundant
2024-02-17 06:16:29 -06:00
--> tests/ui/single_component_path_imports_nested_first.rs:17:10
|
LL | use {regex, serde};
| ^^^^^
|
= help: remove this import
error: this import is redundant
2024-02-17 06:16:29 -06:00
--> tests/ui/single_component_path_imports_nested_first.rs:17:17
|
LL | use {regex, serde};
| ^^^^^
|
= help: remove this import
error: aborting due to 3 previous errors