summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/obfuscated_if_else.stderr
blob: d676c25669570e812a4f09714eac16b8dc3d56fe (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
error: this method chain can be written more clearly with `if .. else ..`
  --> tests/ui/obfuscated_if_else.rs:10:5
   |
LL |     true.then_some("a").unwrap_or("b");
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `if true { "a" } else { "b" }`
   |
   = note: `-D clippy::obfuscated-if-else` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::obfuscated_if_else)]`

error: this method chain can be written more clearly with `if .. else ..`
  --> tests/ui/obfuscated_if_else.rs:13:5
   |
LL |     true.then(|| "a").unwrap_or("b");
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `if true { "a" } else { "b" }`

error: this method chain can be written more clearly with `if .. else ..`
  --> tests/ui/obfuscated_if_else.rs:17:5
   |
LL |     (a == 1).then_some("a").unwrap_or("b");
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `if a == 1 { "a" } else { "b" }`

error: this method chain can be written more clearly with `if .. else ..`
  --> tests/ui/obfuscated_if_else.rs:20:5
   |
LL |     (a == 1).then(|| "a").unwrap_or("b");
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `if a == 1 { "a" } else { "b" }`

error: this method chain can be written more clearly with `if .. else ..`
  --> tests/ui/obfuscated_if_else.rs:27:5
   |
LL |     true.then_some(a += 1).unwrap_or(());
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `if true { a += 1 } else { () }`

error: this method chain can be written more clearly with `if .. else ..`
  --> tests/ui/obfuscated_if_else.rs:30:5
   |
LL |     true.then_some(()).unwrap_or(a += 2);
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `if true { () } else { a += 2 }`

error: this method chain can be written more clearly with `if .. else ..`
  --> tests/ui/obfuscated_if_else.rs:34:5
   |
LL |     true.then(|| n = 1).unwrap_or_else(|| n = 2);
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `if true { n = 1 } else { n = 2 }`

error: this method chain can be written more clearly with `if .. else ..`
  --> tests/ui/obfuscated_if_else.rs:36:5
   |
LL |     true.then_some(1).unwrap_or_else(|| n * 2);
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `if true { 1 } else { n * 2 }`

error: this method chain can be written more clearly with `if .. else ..`
  --> tests/ui/obfuscated_if_else.rs:38:5
   |
LL |     true.then_some(n += 1).unwrap_or_else(|| ());
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `if true { n += 1 } else { () }`

error: this method chain can be written more clearly with `if .. else ..`
  --> tests/ui/obfuscated_if_else.rs:41:13
   |
LL |     let _ = true.then_some(1).unwrap_or_else(|| n * 2);
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `if true { 1 } else { n * 2 }`

error: this method chain can be written more clearly with `if .. else ..`
  --> tests/ui/obfuscated_if_else.rs:44:5
   |
LL |     true.then_some(1).unwrap_or_else(Default::default);
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `if true { 1 } else { Default::default() }`

error: this method chain can be written more clearly with `if .. else ..`
  --> tests/ui/obfuscated_if_else.rs:53:13
   |
LL |     let _ = true.then_some(40).unwrap_or(17) | 2;
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `(if true { 40 } else { 17 })`

error: this method chain can be written more clearly with `if .. else ..`
  --> tests/ui/obfuscated_if_else.rs:57:13
   |
LL |     let _ = true.then_some(30).unwrap_or(17) | true.then_some(2).unwrap_or(3) | true.then_some(10).unwrap_or(1);
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `(if true { 30 } else { 17 })`

error: this method chain can be written more clearly with `if .. else ..`
  --> tests/ui/obfuscated_if_else.rs:57:48
   |
LL |     let _ = true.then_some(30).unwrap_or(17) | true.then_some(2).unwrap_or(3) | true.then_some(10).unwrap_or(1);
   |                                                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `if true { 2 } else { 3 }`

error: this method chain can be written more clearly with `if .. else ..`
  --> tests/ui/obfuscated_if_else.rs:57:81
   |
LL |     let _ = true.then_some(30).unwrap_or(17) | true.then_some(2).unwrap_or(3) | true.then_some(10).unwrap_or(1);
   |                                                                                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `if true { 10 } else { 1 }`

error: this method chain can be written more clearly with `if .. else ..`
  --> tests/ui/obfuscated_if_else.rs:63:17
   |
LL |     let _ = 2 | true.then_some(40).unwrap_or(17);
   |                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `if true { 40 } else { 17 }`

error: this method chain can be written more clearly with `if .. else ..`
  --> tests/ui/obfuscated_if_else.rs:67:13
   |
LL |     let _ = true.then_some(42).unwrap_or(17) as u8;
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `if true { 42 } else { 17 }`

error: this method chain can be written more clearly with `if .. else ..`
  --> tests/ui/obfuscated_if_else.rs:71:14
   |
LL |     let _ = *true.then_some(&42).unwrap_or(&17);
   |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `if true { &42 } else { &17 }`

error: this method chain can be written more clearly with `if .. else ..`
  --> tests/ui/obfuscated_if_else.rs:75:14
   |
LL |     let _ = *true.then_some(&42).unwrap_or(&17) as u8;
   |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `if true { &42 } else { &17 }`

error: aborting due to 19 previous errors