summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/nonminimal_bool.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /src/tools/clippy/tests/ui/nonminimal_bool.stderr
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/tools/clippy/tests/ui/nonminimal_bool.stderr')
-rw-r--r--src/tools/clippy/tests/ui/nonminimal_bool.stderr111
1 files changed, 111 insertions, 0 deletions
diff --git a/src/tools/clippy/tests/ui/nonminimal_bool.stderr b/src/tools/clippy/tests/ui/nonminimal_bool.stderr
new file mode 100644
index 000000000..fc6a5ce1d
--- /dev/null
+++ b/src/tools/clippy/tests/ui/nonminimal_bool.stderr
@@ -0,0 +1,111 @@
+error: this boolean expression can be simplified
+ --> $DIR/nonminimal_bool.rs:11:13
+ |
+LL | let _ = !true;
+ | ^^^^^ help: try: `false`
+ |
+ = note: `-D clippy::nonminimal-bool` implied by `-D warnings`
+
+error: this boolean expression can be simplified
+ --> $DIR/nonminimal_bool.rs:12:13
+ |
+LL | let _ = !false;
+ | ^^^^^^ help: try: `true`
+
+error: this boolean expression can be simplified
+ --> $DIR/nonminimal_bool.rs:13:13
+ |
+LL | let _ = !!a;
+ | ^^^ help: try: `a`
+
+error: this boolean expression can be simplified
+ --> $DIR/nonminimal_bool.rs:14:13
+ |
+LL | let _ = false || a;
+ | ^^^^^^^^^^ help: try: `a`
+
+error: this boolean expression can be simplified
+ --> $DIR/nonminimal_bool.rs:18:13
+ |
+LL | let _ = !(!a && b);
+ | ^^^^^^^^^^ help: try: `a || !b`
+
+error: this boolean expression can be simplified
+ --> $DIR/nonminimal_bool.rs:19:13
+ |
+LL | let _ = !(!a || b);
+ | ^^^^^^^^^^ help: try: `a && !b`
+
+error: this boolean expression can be simplified
+ --> $DIR/nonminimal_bool.rs:20:13
+ |
+LL | let _ = !a && !(b && c);
+ | ^^^^^^^^^^^^^^^ help: try: `!(a || b && c)`
+
+error: this boolean expression can be simplified
+ --> $DIR/nonminimal_bool.rs:28:13
+ |
+LL | let _ = a == b && c == 5 && a == b;
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ |
+help: try
+ |
+LL | let _ = !(a != b || c != 5);
+ | ~~~~~~~~~~~~~~~~~~~
+LL | let _ = a == b && c == 5;
+ | ~~~~~~~~~~~~~~~~
+
+error: this boolean expression can be simplified
+ --> $DIR/nonminimal_bool.rs:29:13
+ |
+LL | let _ = a == b || c == 5 || a == b;
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ |
+help: try
+ |
+LL | let _ = !(a != b && c != 5);
+ | ~~~~~~~~~~~~~~~~~~~
+LL | let _ = a == b || c == 5;
+ | ~~~~~~~~~~~~~~~~
+
+error: this boolean expression can be simplified
+ --> $DIR/nonminimal_bool.rs:30:13
+ |
+LL | let _ = a == b && c == 5 && b == a;
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^
+ |
+help: try
+ |
+LL | let _ = !(a != b || c != 5);
+ | ~~~~~~~~~~~~~~~~~~~
+LL | let _ = a == b && c == 5;
+ | ~~~~~~~~~~~~~~~~
+
+error: this boolean expression can be simplified
+ --> $DIR/nonminimal_bool.rs:31:13
+ |
+LL | let _ = a != b || !(a != b || c == d);
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ |
+help: try
+ |
+LL | let _ = !(a == b && c == d);
+ | ~~~~~~~~~~~~~~~~~~~
+LL | let _ = a != b || c != d;
+ | ~~~~~~~~~~~~~~~~
+
+error: this boolean expression can be simplified
+ --> $DIR/nonminimal_bool.rs:32:13
+ |
+LL | let _ = a != b && !(a != b && c == d);
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ |
+help: try
+ |
+LL | let _ = !(a == b || c == d);
+ | ~~~~~~~~~~~~~~~~~~~
+LL | let _ = a != b && c != d;
+ | ~~~~~~~~~~~~~~~~
+
+error: aborting due to 12 previous errors
+