Skip to content

Commit 3008f53

Browse files
committed
Increase macro recursion limit to 1024 Fixes #22552
1 parent 8f74f95 commit 3008f53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libsyntax/ext/expand.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1038,7 +1038,7 @@ impl<'feat> ExpansionConfig<'feat> {
10381038
ExpansionConfig {
10391039
crate_name: crate_name,
10401040
features: None,
1041-
recursion_limit: 64,
1041+
recursion_limit: 1024,
10421042
trace_mac: false,
10431043
should_test: false,
10441044
single_step: false,

0 commit comments

Comments
 (0)