public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc/devel/rust/master] testsuite/rust: add a testcase for testing ...
@ 2022-09-27  8:23 Thomas Schwinge
  0 siblings, 0 replies; only message in thread
From: Thomas Schwinge @ 2022-09-27  8:23 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:1c19256b70634ab62eeddefed58556bfc4912a90

commit 1c19256b70634ab62eeddefed58556bfc4912a90
Author: liushuyu <liushuyu011@gmail.com>
Date:   Mon Sep 26 22:30:33 2022 -0600

    testsuite/rust: add a testcase for testing ...
    
    ... builtin macro and decl macro mixed expansion

Diff:
---
 gcc/testsuite/rust/compile/builtin_macro_recurse.rs | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gcc/testsuite/rust/compile/builtin_macro_recurse.rs b/gcc/testsuite/rust/compile/builtin_macro_recurse.rs
new file mode 100644
index 00000000000..0b516fd93a9
--- /dev/null
+++ b/gcc/testsuite/rust/compile/builtin_macro_recurse.rs
@@ -0,0 +1,21 @@
+// { dg-additional-options "-fdump-tree-gimple" }
+
+#[rustc_builtin_macro]
+macro_rules! concat {
+    () => {{}};
+}
+
+macro_rules! a {
+    () => { "test" };
+}
+
+macro_rules! b {
+    () => { "canary" };
+}
+
+fn main() {
+    // { dg-final { scan-tree-dump-times {"test1canary"} 1 gimple } }
+    let _ = concat!(a!(), 1, b!());
+    // should not error
+    concat!(a!(), true, b!(),);
+}

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

only message in thread, other threads:[~2022-09-27  8:23 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-27  8:23 [gcc/devel/rust/master] testsuite/rust: add a testcase for testing Thomas Schwinge

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).