public inbox for gcc-rust@gcc.gnu.org
 help / color / mirror / Atom feed
* [COMMITTED] gccrs: testsuite/rust: add a testcase for testing ...
@ 2023-01-31 13:27 Arthur Cohen
  0 siblings, 0 replies; only message in thread
From: Arthur Cohen @ 2023-01-31 13:27 UTC (permalink / raw)
  To: gcc-patches; +Cc: gcc-rust, liushuyu

From: liushuyu <liushuyu011@gmail.com>

... builtin macro and decl macro mixed expansion

gcc/testsuite/ChangeLog:

	* rust/compile/builtin_macro_recurse.rs: New test.

Signed-off-by: Zixing Liu <liushuyu011@gmail.com>

Tested on x86_64-pc-linux-gnu, committed on master.

---
 .../rust/compile/builtin_macro_recurse.rs     | 21 +++++++++++++++++++
 1 file changed, 21 insertions(+)
 create mode 100644 gcc/testsuite/rust/compile/builtin_macro_recurse.rs

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!(),);
+}
-- 
2.39.1


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

only message in thread, other threads:[~2023-01-31 13:23 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-31 13:27 [COMMITTED] gccrs: testsuite/rust: add a testcase for testing 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).