Skip to content

Commit e9a5dae

Browse files
committed
Fix a span in parse_ty_bare_fn.
It currently goes one token too far. Example: line 259 of `tests/ui/abi/compatibility.rs`: ``` test_abi_compatible!(fn_fn, fn(), fn(i32) -> i32); ``` This commit changes the span for the second element from `fn(),` to `fn()`, i.e. removes the extraneous comma. This doesn't affect any tests. I found it while debugging some other code. Not a big deal but an easy fix so I figure it worth doing.
1 parent 894f7a4 commit e9a5dae

File tree

1 file changed

+1
-1
lines changed
  • compiler/rustc_parse/src/parser

1 file changed

+1
-1
lines changed

compiler/rustc_parse/src/parser/ty.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,7 @@ impl<'a> Parser<'a> {
608608
self.dcx().emit_err(FnPointerCannotBeAsync { span: whole_span, qualifier: span });
609609
}
610610
// FIXME(gen_blocks): emit a similar error for `gen fn()`
611-
let decl_span = span_start.to(self.token.span);
611+
let decl_span = span_start.to(self.prev_token.span);
612612
Ok(TyKind::BareFn(P(BareFnTy { ext, safety, generic_params: params, decl, decl_span })))
613613
}
614614

0 commit comments

Comments
 (0)