summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/nonminimal_bool_methods.stderr
blob: 21b84db85890964b9dec175edbe00ae81a7a8b9b (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
error: this boolean expression can be simplified
  --> $DIR/nonminimal_bool_methods.rs:9:13
   |
LL |     let _ = !a.is_some();
   |             ^^^^^^^^^^^^ help: try: `a.is_none()`
   |
   = note: `-D clippy::nonminimal-bool` implied by `-D warnings`

error: this boolean expression can be simplified
  --> $DIR/nonminimal_bool_methods.rs:11:13
   |
LL |     let _ = !a.is_none();
   |             ^^^^^^^^^^^^ help: try: `a.is_some()`

error: this boolean expression can be simplified
  --> $DIR/nonminimal_bool_methods.rs:13:13
   |
LL |     let _ = !b.is_err();
   |             ^^^^^^^^^^^ help: try: `b.is_ok()`

error: this boolean expression can be simplified
  --> $DIR/nonminimal_bool_methods.rs:15:13
   |
LL |     let _ = !b.is_ok();
   |             ^^^^^^^^^^ help: try: `b.is_err()`

error: this boolean expression can be simplified
  --> $DIR/nonminimal_bool_methods.rs:17:13
   |
LL |     let _ = !(a.is_some() && !c);
   |             ^^^^^^^^^^^^^^^^^^^^ help: try: `a.is_none() || c`

error: this boolean expression can be simplified
  --> $DIR/nonminimal_bool_methods.rs:18:13
   |
LL |     let _ = !(a.is_some() || !c);
   |             ^^^^^^^^^^^^^^^^^^^^ help: try: `a.is_none() && c`

error: this boolean expression can be simplified
  --> $DIR/nonminimal_bool_methods.rs:19:26
   |
LL |     let _ = !(!c ^ c) || !a.is_some();
   |                          ^^^^^^^^^^^^ help: try: `a.is_none()`

error: this boolean expression can be simplified
  --> $DIR/nonminimal_bool_methods.rs:20:25
   |
LL |     let _ = (!c ^ c) || !a.is_some();
   |                         ^^^^^^^^^^^^ help: try: `a.is_none()`

error: this boolean expression can be simplified
  --> $DIR/nonminimal_bool_methods.rs:21:23
   |
LL |     let _ = !c ^ c || !a.is_some();
   |                       ^^^^^^^^^^^^ help: try: `a.is_none()`

error: this boolean expression can be simplified
  --> $DIR/nonminimal_bool_methods.rs:93:8
   |
LL |     if !res.is_ok() {}
   |        ^^^^^^^^^^^^ help: try: `res.is_err()`

error: this boolean expression can be simplified
  --> $DIR/nonminimal_bool_methods.rs:94:8
   |
LL |     if !res.is_err() {}
   |        ^^^^^^^^^^^^^ help: try: `res.is_ok()`

error: this boolean expression can be simplified
  --> $DIR/nonminimal_bool_methods.rs:97:8
   |
LL |     if !res.is_some() {}
   |        ^^^^^^^^^^^^^^ help: try: `res.is_none()`

error: this boolean expression can be simplified
  --> $DIR/nonminimal_bool_methods.rs:98:8
   |
LL |     if !res.is_none() {}
   |        ^^^^^^^^^^^^^^ help: try: `res.is_some()`

error: aborting due to 13 previous errors