rust/tests/ui/single_component_path_imports_nested_first.stderr
2022-11-21 20:51:52 +01:00

26 lines
659 B
Text

error: this import is redundant
--> $DIR/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`
error: this import is redundant
--> $DIR/single_component_path_imports_nested_first.rs:13:10
|
LL | use {regex, serde};
| ^^^^^
|
= help: remove this import
error: this import is redundant
--> $DIR/single_component_path_imports_nested_first.rs:13:17
|
LL | use {regex, serde};
| ^^^^^
|
= help: remove this import
error: aborting due to 3 previous errors