]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/single_component_path_imports_nested_first.stderr
Merge commit 'f4850f7292efa33759b4f7f9b7621268979e9914' into clippyup
[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:4:1
3    |
4 LL | use regex;
5    | ^^^^^^^^^^ help: remove it entirely
6    |
7    = note: `-D clippy::single-component-path-imports` implied by `-D warnings`
8
9 error: this import is redundant
10   --> $DIR/single_component_path_imports_nested_first.rs:13:10
11    |
12 LL |     use {regex, serde};
13    |          ^^^^^
14    |
15    = help: remove this import
16
17 error: this import is redundant
18   --> $DIR/single_component_path_imports_nested_first.rs:13:17
19    |
20 LL |     use {regex, serde};
21    |                 ^^^^^
22    |
23    = help: remove this import
24
25 error: aborting due to 3 previous errors
26