summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/single_component_path_imports_nested_first.stderr
blob: 633546f6419a2f65cdea5d65e415bb90179e0fcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
error: this import is redundant
  --> $DIR/single_component_path_imports_nested_first.rs:13:10
   |
LL |     use {regex, serde};
   |          ^^^^^
   |
   = help: remove this import
   = 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:17
   |
LL |     use {regex, serde};
   |                 ^^^^^
   |
   = help: remove this import

error: this import is redundant
  --> $DIR/single_component_path_imports_nested_first.rs:4:1
   |
LL | use regex;
   | ^^^^^^^^^^ help: remove it entirely

error: aborting due to 3 previous errors