summaryrefslogtreecommitdiffstats
path: root/tests/ui/macros/issue-98790.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/macros/issue-98790.rs')
-rw-r--r--tests/ui/macros/issue-98790.rs24
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/ui/macros/issue-98790.rs b/tests/ui/macros/issue-98790.rs
new file mode 100644
index 000000000..8fe6fc41d
--- /dev/null
+++ b/tests/ui/macros/issue-98790.rs
@@ -0,0 +1,24 @@
+// run-pass
+
+macro_rules! stringify_item {
+ ($item:item) => {
+ stringify!($item)
+ };
+}
+
+macro_rules! repro {
+ ($expr:expr) => {
+ stringify_item! {
+ pub fn repro() -> bool {
+ $expr
+ }
+ }
+ };
+}
+
+fn main() {
+ assert_eq!(
+ repro!(match () { () => true } | true),
+ "pub fn repro() -> bool { (match () { () => true, }) | true }"
+ );
+}