Skip to content

Commit 879bfd7

Browse files
committed
hir_typeck: use end_point over BytePos manipulations
Parser has error recovery for Unicode-confusables, which includes the right parentheses `)`. If a multi-byte right parentheses look-alike reaches the argument removal suggestion diagnostics, it would trigger an assertion because the diagnostics used `- BytePos(1)` which can land within a multi-byte codepoint. This is fixed by using `SourceMap::end_point` to find the final right delimiter codepoint, which correctly respects codepoint boundaries.
1 parent b589f86 commit 879bfd7

File tree

1 file changed

+6
-3
lines changed
  • compiler/rustc_hir_typeck/src/fn_ctxt

1 file changed

+6
-3
lines changed

compiler/rustc_hir_typeck/src/fn_ctxt/checks.rs

+6-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ use rustc_middle::ty::{self, IsSuggestable, Ty, TyCtxt};
2222
use rustc_middle::{bug, span_bug};
2323
use rustc_session::Session;
2424
use rustc_span::symbol::{kw, Ident};
25-
use rustc_span::{sym, BytePos, Span, DUMMY_SP};
25+
use rustc_span::{sym, Span, DUMMY_SP};
2626
use rustc_trait_selection::error_reporting::infer::{FailureCode, ObligationCauseExt};
2727
use rustc_trait_selection::infer::InferCtxtExt;
2828
use rustc_trait_selection::traits::{self, ObligationCauseCode, SelectionContext};
@@ -1140,8 +1140,11 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
11401140
.get(arg_idx + 1)
11411141
.map(|&(_, sp)| sp)
11421142
.unwrap_or_else(|| {
1143-
// Subtract one to move before `)`
1144-
call_expr.span.with_lo(call_expr.span.hi() - BytePos(1))
1143+
// Try to move before `)`. Note that `)` here is not necessarily
1144+
// the latin right paren, it could be a Unicode-confusable that
1145+
// looks like a `)`, so we must not use `- BytePos(1)`
1146+
// manipulations here.
1147+
self.tcx().sess.source_map().end_point(call_expr.span)
11451148
});
11461149

11471150
// Include next comma

0 commit comments

Comments
 (0)