summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/unit_return_expecting_ord.stderr
blob: e63d58746090b73d36947e98efb4de0963b88dc7 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
error: this closure returns the unit type which also implements Ord
  --> $DIR/unit_return_expecting_ord.rs:18:25
   |
LL |     structs.sort_by_key(|s| {
   |                         ^^^
   |
   = note: `-D clippy::unit-return-expecting-ord` implied by `-D warnings`
help: probably caused by this trailing semicolon
  --> $DIR/unit_return_expecting_ord.rs:19:24
   |
LL |         double(s.field);
   |                        ^

error: this closure returns the unit type which also implements PartialOrd
  --> $DIR/unit_return_expecting_ord.rs:22:30
   |
LL |     structs.is_sorted_by_key(|s| {
   |                              ^^^
   |
help: probably caused by this trailing semicolon
  --> $DIR/unit_return_expecting_ord.rs:23:24
   |
LL |         double(s.field);
   |                        ^

error: this closure returns the unit type which also implements PartialOrd
  --> $DIR/unit_return_expecting_ord.rs:25:30
   |
LL |     structs.is_sorted_by_key(|s| {
   |                              ^^^

error: this closure returns the unit type which also implements Ord
  --> $DIR/unit_return_expecting_ord.rs:35:25
   |
LL |     structs.sort_by_key(|s| unit(s.field));
   |                         ^^^

error: aborting due to 4 previous errors