public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r14-9107] gccrs: Add testcase for matches!() macro
@ 2024-02-21 12:51 Arthur Cohen
  0 siblings, 0 replies; only message in thread
From: Arthur Cohen @ 2024-02-21 12:51 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:4cabeacc388b4ec8dfa41bf9c99b0dbd87d4b1f4

commit r14-9107-g4cabeacc388b4ec8dfa41bf9c99b0dbd87d4b1f4
Author: Arthur Cohen <arthur.cohen@embecosm.com>
Date:   Tue Feb 6 17:01:46 2024 +0100

    gccrs: Add testcase for matches!() macro
    
    This adds a testcase for issue #2129.
    
    gcc/testsuite/ChangeLog:
    
            * rust/execute/torture/matches_macro.rs: New test.

Diff:
---
 .../rust/execute/torture/matches_macro.rs          | 30 ++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gcc/testsuite/rust/execute/torture/matches_macro.rs b/gcc/testsuite/rust/execute/torture/matches_macro.rs
new file mode 100644
index 000000000000..7b61570727d8
--- /dev/null
+++ b/gcc/testsuite/rust/execute/torture/matches_macro.rs
@@ -0,0 +1,30 @@
+macro_rules! matches {
+    ($expression:expr, $($pattern:pat)|+ $( if $guard:expr ),*) => {
+        match $expression {
+            $($pattern)|+ => true,
+            _ => false,
+        }
+    }
+}
+
+pub fn should_match() -> bool {
+    matches!(1, 1)
+}
+
+pub fn shouldnt() -> bool {
+    matches!(1, 2)
+}
+
+fn main() -> i32 {
+    let mut retval = 2;
+
+    if should_match() {
+        retval -= 1;
+    }
+
+    if !shouldnt() {
+        retval -= 1;
+    }
+
+    retval
+}

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2024-02-21 12:51 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-21 12:51 [gcc r14-9107] gccrs: Add testcase for matches!() macro Arthur Cohen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).