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 d0d1389 commit 75c14dcCopy full SHA for 75c14dc
src/attributes/limits.md
@@ -15,10 +15,10 @@ syntax to specify the recursion depth.
15
#![recursion_limit = "4"]
16
17
macro_rules! a {
18
- () => { a!(1) };
19
- (1) => { a!(2) };
20
- (2) => { a!(3) };
21
- (3) => { a!(4) };
+ () => { a!(1); };
+ (1) => { a!(2); };
+ (2) => { a!(3); };
+ (3) => { a!(4); };
22
(4) => { };
23
}
24
0 commit comments