Skip to content

Commit 0bd7850

Browse files
committed
fix
1 parent b9878b2 commit 0bd7850

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_expand/src/mbe/transcribe.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ fn transcribe_metavar_expr<'tx>(
505505
MetaVarExpr::Concat(ref elements) => metavar_expr_concat(tscx, dspan, elements)?,
506506
MetaVarExpr::Count(original_ident, depth) => {
507507
let matched = matched_from_ident(dcx, original_ident, tscx.interp)?;
508-
let count = count_repetitions(dcx, depth, matched, &tscx.repeats, &dspan)?;
508+
let count = count_repetitions(dcx, depth, matched, &tscx.repeats, dspan)?;
509509
TokenTree::token_alone(
510510
TokenKind::lit(token::Integer, sym::integer(count), None),
511511
tscx.visited_dspan(dspan),

0 commit comments

Comments
 (0)