summaryrefslogtreecommitdiffstats
path: root/tests/ui/macros/rfc-3086-metavar-expr/issue-111904.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tests/ui/macros/rfc-3086-metavar-expr/issue-111904.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/macros/rfc-3086-metavar-expr/issue-111904.rs b/tests/ui/macros/rfc-3086-metavar-expr/issue-111904.rs
index 9cc572c23..3000bfed6 100644
--- a/tests/ui/macros/rfc-3086-metavar-expr/issue-111904.rs
+++ b/tests/ui/macros/rfc-3086-metavar-expr/issue-111904.rs
@@ -1,7 +1,7 @@
#![feature(macro_metavar_expr)]
macro_rules! foo {
- ( $( $($t:ident),* );* ) => { ${count(t,)} }
+ ( $( $($t:ident),* );* ) => { ${count($t,)} }
//~^ ERROR `count` followed by a comma must have an associated
//~| ERROR expected expression, found `$`
}