We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8746bd4 commit 3b94fc3Copy full SHA for 3b94fc3
corpus/macros.txt
@@ -28,6 +28,10 @@ a!(b + c + +);
28
a!('a'..='z');
29
a!('\u{0}'..='\u{2}');
30
a!('lifetime)
31
+a!($)
32
+a!($())
33
+a!($ a $)
34
+a!(${$([ a ])});
35
36
----
37
@@ -52,7 +56,19 @@ a!('lifetime)
52
56
(token_tree (char_literal) (char_literal)))
53
57
(macro_invocation
54
58
(identifier)
55
- (token_tree (identifier))))
59
+ (token_tree (identifier)))
60
+ (macro_invocation
61
+ (identifier)
62
+ (token_tree))
63
64
65
+ (token_tree (token_tree)))
66
67
68
69
70
71
+ (token_tree (token_tree (token_tree (token_tree (identifier)))))))
72
73
============================================
74
Macro definition
0 commit comments