summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/redundant_pattern_matching_poll.stderr
blob: c010c3c44375a08a702c4f798ab1032aac14e54b (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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
error: redundant pattern matching, consider using `is_pending()`
  --> $DIR/redundant_pattern_matching_poll.rs:15:12
   |
LL |     if let Pending = Pending::<()> {}
   |     -------^^^^^^^---------------- help: try: `if Pending::<()>.is_pending()`
   |
   = note: `-D clippy::redundant-pattern-matching` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::redundant_pattern_matching)]`

error: redundant pattern matching, consider using `is_ready()`
  --> $DIR/redundant_pattern_matching_poll.rs:17:12
   |
LL |     if let Ready(_) = Ready(42) {}
   |     -------^^^^^^^^------------ help: try: `if Ready(42).is_ready()`

error: redundant pattern matching, consider using `is_ready()`
  --> $DIR/redundant_pattern_matching_poll.rs:19:12
   |
LL |     if let Ready(_) = Ready(42) {
   |     -------^^^^^^^^------------ help: try: `if Ready(42).is_ready()`

error: redundant pattern matching, consider using `is_ready()`
  --> $DIR/redundant_pattern_matching_poll.rs:25:15
   |
LL |     while let Ready(_) = Ready(42) {}
   |     ----------^^^^^^^^------------ help: try: `while Ready(42).is_ready()`

error: redundant pattern matching, consider using `is_pending()`
  --> $DIR/redundant_pattern_matching_poll.rs:27:15
   |
LL |     while let Pending = Ready(42) {}
   |     ----------^^^^^^^------------ help: try: `while Ready(42).is_pending()`

error: redundant pattern matching, consider using `is_pending()`
  --> $DIR/redundant_pattern_matching_poll.rs:29:15
   |
LL |     while let Pending = Pending::<()> {}
   |     ----------^^^^^^^---------------- help: try: `while Pending::<()>.is_pending()`

error: redundant pattern matching, consider using `is_ready()`
  --> $DIR/redundant_pattern_matching_poll.rs:35:5
   |
LL | /     match Ready(42) {
LL | |         Ready(_) => true,
LL | |         Pending => false,
LL | |     };
   | |_____^ help: try: `Ready(42).is_ready()`

error: redundant pattern matching, consider using `is_pending()`
  --> $DIR/redundant_pattern_matching_poll.rs:40:5
   |
LL | /     match Pending::<()> {
LL | |         Ready(_) => false,
LL | |         Pending => true,
LL | |     };
   | |_____^ help: try: `Pending::<()>.is_pending()`

error: redundant pattern matching, consider using `is_pending()`
  --> $DIR/redundant_pattern_matching_poll.rs:45:13
   |
LL |       let _ = match Pending::<()> {
   |  _____________^
LL | |         Ready(_) => false,
LL | |         Pending => true,
LL | |     };
   | |_____^ help: try: `Pending::<()>.is_pending()`

error: redundant pattern matching, consider using `is_ready()`
  --> $DIR/redundant_pattern_matching_poll.rs:51:20
   |
LL |     let _ = if let Ready(_) = poll { true } else { false };
   |             -------^^^^^^^^------- help: try: `if poll.is_ready()`

error: redundant pattern matching, consider using `is_ready()`
  --> $DIR/redundant_pattern_matching_poll.rs:55:20
   |
LL |     let _ = if let Ready(_) = gen_poll() {
   |             -------^^^^^^^^------------- help: try: `if gen_poll().is_ready()`

error: redundant pattern matching, consider using `is_pending()`
  --> $DIR/redundant_pattern_matching_poll.rs:57:19
   |
LL |     } else if let Pending = gen_poll() {
   |            -------^^^^^^^------------- help: try: `if gen_poll().is_pending()`

error: redundant pattern matching, consider using `is_ready()`
  --> $DIR/redundant_pattern_matching_poll.rs:73:12
   |
LL |     if let Ready(_) = Ready(42) {}
   |     -------^^^^^^^^------------ help: try: `if Ready(42).is_ready()`

error: redundant pattern matching, consider using `is_pending()`
  --> $DIR/redundant_pattern_matching_poll.rs:75:12
   |
LL |     if let Pending = Pending::<()> {}
   |     -------^^^^^^^---------------- help: try: `if Pending::<()>.is_pending()`

error: redundant pattern matching, consider using `is_ready()`
  --> $DIR/redundant_pattern_matching_poll.rs:77:15
   |
LL |     while let Ready(_) = Ready(42) {}
   |     ----------^^^^^^^^------------ help: try: `while Ready(42).is_ready()`

error: redundant pattern matching, consider using `is_pending()`
  --> $DIR/redundant_pattern_matching_poll.rs:79:15
   |
LL |     while let Pending = Pending::<()> {}
   |     ----------^^^^^^^---------------- help: try: `while Pending::<()>.is_pending()`

error: redundant pattern matching, consider using `is_ready()`
  --> $DIR/redundant_pattern_matching_poll.rs:81:5
   |
LL | /     match Ready(42) {
LL | |         Ready(_) => true,
LL | |         Pending => false,
LL | |     };
   | |_____^ help: try: `Ready(42).is_ready()`

error: redundant pattern matching, consider using `is_pending()`
  --> $DIR/redundant_pattern_matching_poll.rs:86:5
   |
LL | /     match Pending::<()> {
LL | |         Ready(_) => false,
LL | |         Pending => true,
LL | |     };
   | |_____^ help: try: `Pending::<()>.is_pending()`

error: aborting due to 18 previous errors