We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ccc97e commit 5118d2fCopy full SHA for 5118d2f
src/test/compile-fail/issue-6596.rs
@@ -0,0 +1,9 @@
1
+macro_rules! e( //~ ERROR unknown macro variable `nonexistent`
2
+ ($inp:ident) => (
3
+ $nonexistent
4
+ );
5
+)
6
+
7
+fn main() {
8
+ e!(foo);
9
+}
0 commit comments