about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/unit_cmp.stderr
blob: 21aa9dce1510ffd3f8bcfed4ecf232a7e05a5f77 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
error: ==-comparison of unit values detected. This will always be true
  --> tests/ui/unit_cmp.rs:17:8
   |
LL |       if {
   |  ________^
LL | |
LL | |
LL | |         true;
LL | |     } == {
LL | |         false;
LL | |     } {}
   | |_____^
   |
   = note: `-D clippy::unit-cmp` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::unit_cmp)]`

error: >-comparison of unit values detected. This will always be false
  --> tests/ui/unit_cmp.rs:25:8
   |
LL |       if {
   |  ________^
LL | |
LL | |
LL | |         true;
LL | |     } > {
LL | |         false;
LL | |     } {}
   | |_____^

error: `assert_eq` of unit values detected. This will always succeed
  --> tests/ui/unit_cmp.rs:33:5
   |
LL | /     assert_eq!(
LL | |
LL | |         {
LL | |             true;
...  |
LL | |     );
   | |_____^

error: `debug_assert_eq` of unit values detected. This will always succeed
  --> tests/ui/unit_cmp.rs:42:5
   |
LL | /     debug_assert_eq!(
LL | |
LL | |         {
LL | |             true;
...  |
LL | |     );
   | |_____^

error: `assert_ne` of unit values detected. This will always fail
  --> tests/ui/unit_cmp.rs:52:5
   |
LL | /     assert_ne!(
LL | |
LL | |         {
LL | |             true;
...  |
LL | |     );
   | |_____^

error: `debug_assert_ne` of unit values detected. This will always fail
  --> tests/ui/unit_cmp.rs:61:5
   |
LL | /     debug_assert_ne!(
LL | |
LL | |         {
LL | |             true;
...  |
LL | |     );
   | |_____^

error: `assert_eq` of unit values detected. This will always succeed
  --> tests/ui/unit_cmp.rs:74:5
   |
LL | /     assert_eq!(
LL | |
LL | |         {
LL | |             1;
LL | |         },
LL | |         foo()
LL | |     );
   | |_____^

error: `assert_eq` of unit values detected. This will always succeed
  --> tests/ui/unit_cmp.rs:81:5
   |
LL |     assert_eq!(foo(), foo());
   |     ^^^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to 8 previous errors