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 cfc1aa3 commit a8909b0Copy full SHA for a8909b0
compiler/rustc_expand/src/mbe/macro_rules.rs
@@ -456,8 +456,8 @@ pub fn compile_declarative_macro(
456
match tt_parser.parse_tt(&mut Cow::Owned(parser), &argument_gram, &mut NoopTracker) {
457
Success(m) => m,
458
Failure(()) => {
459
- // The fast `NoopTracker` doesn't have any info on failure, so we need to retry it with another one
460
- // that gives us the information we need.
+ // The fast `NoopTracker` doesn't have any info on failure, so we need to retry it
+ // with another one that gives us the information we need.
461
// For this we need to reclone the macro body as the previous parser consumed it.
462
let retry_parser = create_parser();
463
0 commit comments