summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/single_component_path_imports_nested_first.stderr
blob: cf990be1b9ff1cea7a0efe5c9509652b1a1ec271 (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};
   |          ^^^^^
   |
   = note: `-D clippy::single-component-path-imports` implied by `-D warnings`
   = 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: 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