summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/needless_bitwise_bool.fixed
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/needless_bitwise_bool.fixed
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/needless_bitwise_bool.fixed')
-rw-r--r--src/tools/clippy/tests/ui/needless_bitwise_bool.fixed40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/tools/clippy/tests/ui/needless_bitwise_bool.fixed b/src/tools/clippy/tests/ui/needless_bitwise_bool.fixed
new file mode 100644
index 000000000..5e1ea663a
--- /dev/null
+++ b/src/tools/clippy/tests/ui/needless_bitwise_bool.fixed
@@ -0,0 +1,40 @@
+// run-rustfix
+
+#![warn(clippy::needless_bitwise_bool)]
+
+fn returns_bool() -> bool {
+ true
+}
+
+const fn const_returns_bool() -> bool {
+ false
+}
+
+fn main() {
+ let (x, y) = (false, true);
+ if x & y {
+ println!("true")
+ }
+ if returns_bool() & x {
+ println!("true")
+ }
+ if !returns_bool() & returns_bool() {
+ println!("true")
+ }
+ if y && !x {
+ println!("true")
+ }
+
+ // BELOW: lints we hope to catch as `Expr::can_have_side_effects` improves.
+ if y & !const_returns_bool() {
+ println!("true") // This is a const function, in an UnOp
+ }
+
+ if y & "abcD".is_empty() {
+ println!("true") // This is a const method call
+ }
+
+ if y & (0 < 1) {
+ println!("true") // This is a BinOp with no side effects
+ }
+}