rust/tests/ui/booleans.stderr

207 lines
5.9 KiB
Plaintext
Raw Normal View History

error: this boolean expression contains a logic bug
--> $DIR/booleans.rs:10:13
|
2018-12-27 16:57:55 +01:00
LL | let _ = a && b || a;
2017-07-21 10:40:23 +02:00
| ^^^^^^^^^^^ help: it would look like the following: `a`
|
= note: `-D clippy::logic-bug` implied by `-D warnings`
help: this expression can be optimized out by applying boolean operations to the outer expression
--> $DIR/booleans.rs:10:18
|
2018-12-27 16:57:55 +01:00
LL | let _ = a && b || a;
| ^
error: this boolean expression can be simplified
--> $DIR/booleans.rs:12:13
|
2018-12-27 16:57:55 +01:00
LL | let _ = !true;
2017-07-21 10:40:23 +02:00
| ^^^^^ help: try: `false`
|
= note: `-D clippy::nonminimal-bool` implied by `-D warnings`
error: this boolean expression can be simplified
--> $DIR/booleans.rs:13:13
|
2018-12-27 16:57:55 +01:00
LL | let _ = !false;
2017-07-21 10:40:23 +02:00
| ^^^^^^ help: try: `true`
error: this boolean expression can be simplified
--> $DIR/booleans.rs:14:13
|
2018-12-27 16:57:55 +01:00
LL | let _ = !!a;
2017-07-21 10:40:23 +02:00
| ^^^ help: try: `a`
error: this boolean expression contains a logic bug
--> $DIR/booleans.rs:15:13
|
2018-12-27 16:57:55 +01:00
LL | let _ = false && a;
2017-07-21 10:40:23 +02:00
| ^^^^^^^^^^ help: it would look like the following: `false`
|
help: this expression can be optimized out by applying boolean operations to the outer expression
--> $DIR/booleans.rs:15:22
|
2018-12-27 16:57:55 +01:00
LL | let _ = false && a;
| ^
error: this boolean expression can be simplified
--> $DIR/booleans.rs:16:13
|
2018-12-27 16:57:55 +01:00
LL | let _ = false || a;
2017-07-21 10:40:23 +02:00
| ^^^^^^^^^^ help: try: `a`
error: this boolean expression can be simplified
--> $DIR/booleans.rs:21:13
|
2018-12-27 16:57:55 +01:00
LL | let _ = !(!a && b);
2017-07-21 10:40:23 +02:00
| ^^^^^^^^^^ help: try: `!b || a`
error: this boolean expression contains a logic bug
--> $DIR/booleans.rs:31:13
|
2018-12-27 16:57:55 +01:00
LL | let _ = a == b && a != b;
2017-07-21 10:40:23 +02:00
| ^^^^^^^^^^^^^^^^ help: it would look like the following: `false`
|
help: this expression can be optimized out by applying boolean operations to the outer expression
--> $DIR/booleans.rs:31:13
|
2018-12-27 16:57:55 +01:00
LL | let _ = a == b && a != b;
| ^^^^^^
error: this boolean expression can be simplified
--> $DIR/booleans.rs:32:13
|
2018-12-27 16:57:55 +01:00
LL | let _ = a == b && c == 5 && a == b;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
2019-10-26 21:53:42 +02:00
|
help: try
2017-07-10 15:29:29 +02:00
|
2018-12-27 16:57:55 +01:00
LL | let _ = a == b && c == 5;
2017-07-10 15:29:29 +02:00
| ^^^^^^^^^^^^^^^^
2018-12-27 16:57:55 +01:00
LL | let _ = !(c != 5 || a != b);
2017-07-10 15:29:29 +02:00
| ^^^^^^^^^^^^^^^^^^^
error: this boolean expression can be simplified
--> $DIR/booleans.rs:33:13
|
2018-12-27 16:57:55 +01:00
LL | let _ = a == b && c == 5 && b == a;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
2019-10-26 21:53:42 +02:00
|
help: try
2017-07-10 15:29:29 +02:00
|
2018-12-27 16:57:55 +01:00
LL | let _ = a == b && c == 5;
2017-07-10 15:29:29 +02:00
| ^^^^^^^^^^^^^^^^
2018-12-27 16:57:55 +01:00
LL | let _ = !(c != 5 || a != b);
2017-07-10 15:29:29 +02:00
| ^^^^^^^^^^^^^^^^^^^
error: this boolean expression contains a logic bug
--> $DIR/booleans.rs:34:13
|
2018-12-27 16:57:55 +01:00
LL | let _ = a < b && a >= b;
2017-07-21 10:40:23 +02:00
| ^^^^^^^^^^^^^^^ help: it would look like the following: `false`
|
help: this expression can be optimized out by applying boolean operations to the outer expression
--> $DIR/booleans.rs:34:13
|
2018-12-27 16:57:55 +01:00
LL | let _ = a < b && a >= b;
| ^^^^^
error: this boolean expression contains a logic bug
--> $DIR/booleans.rs:35:13
|
2018-12-27 16:57:55 +01:00
LL | let _ = a > b && a <= b;
2017-07-21 10:40:23 +02:00
| ^^^^^^^^^^^^^^^ help: it would look like the following: `false`
|
help: this expression can be optimized out by applying boolean operations to the outer expression
--> $DIR/booleans.rs:35:13
|
2018-12-27 16:57:55 +01:00
LL | let _ = a > b && a <= b;
| ^^^^^
error: this boolean expression can be simplified
--> $DIR/booleans.rs:37:13
|
2018-12-27 16:57:55 +01:00
LL | let _ = a != b || !(a != b || c == d);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2019-10-26 21:53:42 +02:00
|
help: try
2017-07-10 15:29:29 +02:00
|
2018-12-27 16:57:55 +01:00
LL | let _ = c != d || a != b;
2017-07-10 15:29:29 +02:00
| ^^^^^^^^^^^^^^^^
2018-12-27 16:57:55 +01:00
LL | let _ = !(a == b && c == d);
2017-07-10 15:29:29 +02:00
| ^^^^^^^^^^^^^^^^^^^
error: this boolean expression can be simplified
--> $DIR/booleans.rs:45:13
|
2018-12-27 16:57:55 +01:00
LL | let _ = !a.is_some();
| ^^^^^^^^^^^^ help: try: `a.is_none()`
error: this boolean expression can be simplified
--> $DIR/booleans.rs:47:13
|
2018-12-27 16:57:55 +01:00
LL | let _ = !a.is_none();
| ^^^^^^^^^^^^ help: try: `a.is_some()`
error: this boolean expression can be simplified
--> $DIR/booleans.rs:49:13
|
2018-12-27 16:57:55 +01:00
LL | let _ = !b.is_err();
| ^^^^^^^^^^^ help: try: `b.is_ok()`
error: this boolean expression can be simplified
--> $DIR/booleans.rs:51:13
|
2018-12-27 16:57:55 +01:00
LL | let _ = !b.is_ok();
| ^^^^^^^^^^ help: try: `b.is_err()`
error: this boolean expression can be simplified
--> $DIR/booleans.rs:53:13
|
2018-12-27 16:57:55 +01:00
LL | let _ = !(a.is_some() && !c);
| ^^^^^^^^^^^^^^^^^^^^ help: try: `c || a.is_none()`
2017-11-17 22:52:11 +01:00
error: this boolean expression can be simplified
--> $DIR/booleans.rs:54:26
2017-11-17 22:52:11 +01:00
|
2018-12-27 16:57:55 +01:00
LL | let _ = !(!c ^ c) || !a.is_some();
| ^^^^^^^^^^^^ help: try: `a.is_none()`
2017-11-17 22:52:11 +01:00
2017-11-19 10:07:50 +01:00
error: this boolean expression can be simplified
--> $DIR/booleans.rs:55:25
2017-11-19 10:07:50 +01:00
|
2018-12-27 16:57:55 +01:00
LL | let _ = (!c ^ c) || !a.is_some();
| ^^^^^^^^^^^^ help: try: `a.is_none()`
2017-11-19 10:07:50 +01:00
error: this boolean expression can be simplified
--> $DIR/booleans.rs:56:23
2017-11-19 10:07:50 +01:00
|
2018-12-27 16:57:55 +01:00
LL | let _ = !c ^ c || !a.is_some();
| ^^^^^^^^^^^^ help: try: `a.is_none()`
2017-11-19 10:07:50 +01:00
error: this boolean expression can be simplified
--> $DIR/booleans.rs:128:8
2018-12-27 16:57:55 +01:00
|
LL | if !res.is_ok() {}
| ^^^^^^^^^^^^ help: try: `res.is_err()`
error: this boolean expression can be simplified
--> $DIR/booleans.rs:129:8
2018-12-27 16:57:55 +01:00
|
LL | if !res.is_err() {}
| ^^^^^^^^^^^^^ help: try: `res.is_ok()`
error: this boolean expression can be simplified
--> $DIR/booleans.rs:132:8
2018-12-27 16:57:55 +01:00
|
LL | if !res.is_some() {}
| ^^^^^^^^^^^^^^ help: try: `res.is_none()`
error: this boolean expression can be simplified
--> $DIR/booleans.rs:133:8
2018-12-27 16:57:55 +01:00
|
LL | if !res.is_none() {}
| ^^^^^^^^^^^^^^ help: try: `res.is_some()`
error: aborting due to 25 previous errors
2018-01-16 17:06:27 +01:00