summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/match_single_binding.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:20:39 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:20:39 +0000
commit1376c5a617be5c25655d0d7cb63e3beaa5a6e026 (patch)
tree3bb8d61aee02bc7a15eab3f36e3b921afc2075d0 /src/tools/clippy/tests/ui/match_single_binding.rs
parentReleasing progress-linux version 1.69.0+dfsg1-1~progress7.99u1. (diff)
downloadrustc-1376c5a617be5c25655d0d7cb63e3beaa5a6e026.tar.xz
rustc-1376c5a617be5c25655d0d7cb63e3beaa5a6e026.zip
Merging upstream version 1.70.0+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/tools/clippy/tests/ui/match_single_binding.rs')
-rw-r--r--src/tools/clippy/tests/ui/match_single_binding.rs55
1 files changed, 49 insertions, 6 deletions
diff --git a/src/tools/clippy/tests/ui/match_single_binding.rs b/src/tools/clippy/tests/ui/match_single_binding.rs
index f188aeb5f..8b047b19c 100644
--- a/src/tools/clippy/tests/ui/match_single_binding.rs
+++ b/src/tools/clippy/tests/ui/match_single_binding.rs
@@ -1,7 +1,12 @@
// run-rustfix
#![warn(clippy::match_single_binding)]
-#![allow(unused_variables)]
-#![allow(clippy::toplevel_ref_arg, clippy::uninlined_format_args)]
+#![allow(
+ unused,
+ clippy::let_unit_value,
+ clippy::no_effect,
+ clippy::toplevel_ref_arg,
+ clippy::uninlined_format_args
+)]
struct Point {
x: i32,
@@ -127,7 +132,6 @@ fn main() {
}
}
-#[allow(dead_code)]
fn issue_8723() {
let (mut val, idx) = ("a b", 1);
@@ -141,15 +145,14 @@ fn issue_8723() {
let _ = val;
}
-#[allow(dead_code)]
+fn side_effects() {}
+
fn issue_9575() {
- fn side_effects() {}
let _ = || match side_effects() {
_ => println!("Needs curlies"),
};
}
-#[allow(dead_code)]
fn issue_9725(r: Option<u32>) {
match r {
x => match x {
@@ -162,3 +165,43 @@ fn issue_9725(r: Option<u32>) {
},
};
}
+
+fn issue_10447() -> usize {
+ match 1 {
+ _ => (),
+ }
+
+ let a = match 1 {
+ _ => (),
+ };
+
+ match 1 {
+ _ => side_effects(),
+ }
+
+ let b = match 1 {
+ _ => side_effects(),
+ };
+
+ match 1 {
+ _ => println!("1"),
+ }
+
+ let c = match 1 {
+ _ => println!("1"),
+ };
+
+ let in_expr = [
+ match 1 {
+ _ => (),
+ },
+ match 1 {
+ _ => side_effects(),
+ },
+ match 1 {
+ _ => println!("1"),
+ },
+ ];
+
+ 2
+}