]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/single_component_path_imports_nested_first.stderr
Auto merge of #96711 - emilio:inline-slice-clone, r=nikic
[rust.git] / src / tools / clippy / tests / ui / single_component_path_imports_nested_first.stderr
1 error: this import is redundant
2   --> $DIR/single_component_path_imports_nested_first.rs:13:10
3    |
4 LL |     use {regex, serde};
5    |          ^^^^^
6    |
7    = help: remove this import
8    = note: `-D clippy::single-component-path-imports` implied by `-D warnings`
9
10 error: this import is redundant
11   --> $DIR/single_component_path_imports_nested_first.rs:13:17
12    |
13 LL |     use {regex, serde};
14    |                 ^^^^^
15    |
16    = help: remove this import
17
18 error: this import is redundant
19   --> $DIR/single_component_path_imports_nested_first.rs:4:1
20    |
21 LL | use regex;
22    | ^^^^^^^^^^ help: remove it entirely
23
24 error: aborting due to 3 previous errors
25