Skip to content

Commit bda2ea4

Browse files
authored
Rollup merge of rust-lang#139232 - nnethercote:remove-Map-5, r=Zalathar
Move methods from `Map` to `TyCtxt`, part 5. This eliminates all methods on `Map`. Actually removing `Map` will occur in a follow-up PR. A follow-up to rust-lang#137504. r? `@Zalathar`
2 parents 5df0c68 + 6713f34 commit bda2ea4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+175
-208
lines changed

compiler/rustc_borrowck/src/diagnostics/conflict_errors.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1364,7 +1364,7 @@ impl<'infcx, 'tcx> MirBorrowckCtxt<'_, 'infcx, 'tcx> {
13641364
}
13651365
// Try to find predicates on *generic params* that would allow copying `ty`
13661366
let mut suggestion =
1367-
if let Some(symbol) = tcx.hir().maybe_get_struct_pattern_shorthand_field(expr) {
1367+
if let Some(symbol) = tcx.hir_maybe_get_struct_pattern_shorthand_field(expr) {
13681368
format!(": {symbol}.clone()")
13691369
} else {
13701370
".clone()".to_owned()

compiler/rustc_borrowck/src/diagnostics/move_errors.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ impl<'infcx, 'tcx> MirBorrowckCtxt<'_, 'infcx, 'tcx> {
502502
let upvar = &self.upvars[upvar_field.unwrap().index()];
503503
let upvar_hir_id = upvar.get_root_variable();
504504
let upvar_name = upvar.to_string(tcx);
505-
let upvar_span = tcx.hir().span(upvar_hir_id);
505+
let upvar_span = tcx.hir_span(upvar_hir_id);
506506

507507
let place_name = self.describe_any_place(move_place.as_ref());
508508

compiler/rustc_borrowck/src/diagnostics/region_errors.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -628,7 +628,7 @@ impl<'infcx, 'tcx> MirBorrowckCtxt<'_, 'infcx, 'tcx> {
628628

629629
if let Some(def_hir) = defined_hir {
630630
let upvars_map = self.infcx.tcx.upvars_mentioned(def_id).unwrap();
631-
let upvar_def_span = self.infcx.tcx.hir().span(def_hir);
631+
let upvar_def_span = self.infcx.tcx.hir_span(def_hir);
632632
let upvar_span = upvars_map.get(&def_hir).unwrap().span;
633633
diag.subdiagnostic(VarHereDenote::Defined { span: upvar_def_span });
634634
diag.subdiagnostic(VarHereDenote::Captured { span: upvar_span });

compiler/rustc_borrowck/src/diagnostics/region_name.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ impl<'tcx> MirBorrowckCtxt<'_, '_, 'tcx> {
291291
match *error_region {
292292
ty::ReEarlyParam(ebr) => ebr.has_name().then(|| {
293293
let def_id = tcx.generics_of(self.mir_def_id()).region_param(ebr, tcx).def_id;
294-
let span = tcx.hir().span_if_local(def_id).unwrap_or(DUMMY_SP);
294+
let span = tcx.hir_span_if_local(def_id).unwrap_or(DUMMY_SP);
295295
RegionName { name: ebr.name, source: RegionNameSource::NamedEarlyParamRegion(span) }
296296
}),
297297

@@ -302,7 +302,7 @@ impl<'tcx> MirBorrowckCtxt<'_, '_, 'tcx> {
302302
ty::ReLateParam(late_param) => match late_param.kind {
303303
ty::LateParamRegionKind::Named(region_def_id, name) => {
304304
// Get the span to point to, even if we don't use the name.
305-
let span = tcx.hir().span_if_local(region_def_id).unwrap_or(DUMMY_SP);
305+
let span = tcx.hir_span_if_local(region_def_id).unwrap_or(DUMMY_SP);
306306
debug!(
307307
"bound region named: {:?}, is_named: {:?}",
308308
name,

compiler/rustc_borrowck/src/diagnostics/var_name.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ impl<'tcx> RegionInferenceContext<'tcx> {
7070
debug!("get_upvar_name_and_span_for_region: upvar_hir_id={upvar_hir_id:?}");
7171

7272
let upvar_name = tcx.hir_name(upvar_hir_id);
73-
let upvar_span = tcx.hir().span(upvar_hir_id);
73+
let upvar_span = tcx.hir_span(upvar_hir_id);
7474
debug!(
7575
"get_upvar_name_and_span_for_region: upvar_name={upvar_name:?} upvar_span={upvar_span:?}",
7676
);

compiler/rustc_const_eval/src/const_eval/valtrees.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ pub(crate) fn eval_to_valtree<'tcx>(
256256
Err(err) => {
257257
let did = cid.instance.def_id();
258258
let global_const_id = cid.display(tcx);
259-
let span = tcx.hir().span_if_local(did);
259+
let span = tcx.hir_span_if_local(did);
260260
match err {
261261
ValTreeCreationError::NodesOverflow => {
262262
let handled =

compiler/rustc_hir/src/hir.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2123,7 +2123,7 @@ pub type Lit = Spanned<LitKind>;
21232123
/// explicit discriminant values for enum variants.
21242124
///
21252125
/// You can check if this anon const is a default in a const param
2126-
/// `const N: usize = { ... }` with `tcx.hir().opt_const_param_default_param_def_id(..)`
2126+
/// `const N: usize = { ... }` with `tcx.hir_opt_const_param_default_param_def_id(..)`
21272127
#[derive(Copy, Clone, Debug, HashStable_Generic)]
21282128
pub struct AnonConst {
21292129
#[stable_hasher(ignore)]

compiler/rustc_hir_analysis/src/check/check.rs

+5-7
Original file line numberDiff line numberDiff line change
@@ -578,10 +578,8 @@ fn check_opaque_precise_captures<'tcx>(tcx: TyCtxt<'tcx>, opaque_def_id: LocalDe
578578
}
579579
}
580580
_ => {
581-
tcx.dcx().span_delayed_bug(
582-
tcx.hir().span(hir_id),
583-
"parameter should have been resolved",
584-
);
581+
tcx.dcx()
582+
.span_delayed_bug(tcx.hir_span(hir_id), "parameter should have been resolved");
585583
}
586584
}
587585
}
@@ -1049,7 +1047,7 @@ fn check_impl_items_against_trait<'tcx>(
10491047
leaf_def.as_ref().is_some_and(|node_item| !node_item.defining_node.is_from_trait());
10501048

10511049
if !is_implemented_here {
1052-
let full_impl_span = tcx.hir().span_with_body(tcx.local_def_id_to_hir_id(impl_id));
1050+
let full_impl_span = tcx.hir_span_with_body(tcx.local_def_id_to_hir_id(impl_id));
10531051
match tcx.eval_default_body_stability(trait_item_id, full_impl_span) {
10541052
EvalResult::Deny { feature, reason, issue, .. } => default_body_is_unstable(
10551053
tcx,
@@ -1105,7 +1103,7 @@ fn check_impl_items_against_trait<'tcx>(
11051103
}
11061104

11071105
if !missing_items.is_empty() {
1108-
let full_impl_span = tcx.hir().span_with_body(tcx.local_def_id_to_hir_id(impl_id));
1106+
let full_impl_span = tcx.hir_span_with_body(tcx.local_def_id_to_hir_id(impl_id));
11091107
missing_items_err(tcx, impl_id, &missing_items, full_impl_span);
11101108
}
11111109

@@ -1321,7 +1319,7 @@ pub(super) fn check_transparent<'tcx>(tcx: TyCtxt<'tcx>, adt: ty::AdtDef<'tcx>)
13211319
let typing_env = ty::TypingEnv::non_body_analysis(tcx, field.did);
13221320
let layout = tcx.layout_of(typing_env.as_query_input(ty));
13231321
// We are currently checking the type this field came from, so it must be local
1324-
let span = tcx.hir().span_if_local(field.did).unwrap();
1322+
let span = tcx.hir_span_if_local(field.did).unwrap();
13251323
let trivial = layout.is_ok_and(|layout| layout.is_1zst());
13261324
if !trivial {
13271325
return (span, trivial, None);

compiler/rustc_hir_analysis/src/check/compare_impl_item.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -1208,7 +1208,7 @@ fn extract_spans_for_error_reporting<'tcx>(
12081208
TypeError::ArgumentMutability(i) | TypeError::ArgumentSorts(ExpectedFound { .. }, i) => {
12091209
(impl_args.nth(i).unwrap(), trait_args.and_then(|mut args| args.nth(i)))
12101210
}
1211-
_ => (cause.span, tcx.hir().span_if_local(trait_m.def_id)),
1211+
_ => (cause.span, tcx.hir_span_if_local(trait_m.def_id)),
12121212
}
12131213
}
12141214

@@ -1261,7 +1261,7 @@ fn compare_self_type<'tcx>(
12611261
self_descr
12621262
);
12631263
err.span_label(impl_m_span, format!("`{self_descr}` used in impl"));
1264-
if let Some(span) = tcx.hir().span_if_local(trait_m.def_id) {
1264+
if let Some(span) = tcx.hir_span_if_local(trait_m.def_id) {
12651265
err.span_label(span, format!("trait method declared without `{self_descr}`"));
12661266
} else {
12671267
err.note_trait_signature(trait_m.name, trait_m.signature(tcx));
@@ -1281,7 +1281,7 @@ fn compare_self_type<'tcx>(
12811281
self_descr
12821282
);
12831283
err.span_label(impl_m_span, format!("expected `{self_descr}` in impl"));
1284-
if let Some(span) = tcx.hir().span_if_local(trait_m.def_id) {
1284+
if let Some(span) = tcx.hir_span_if_local(trait_m.def_id) {
12851285
err.span_label(span, format!("`{self_descr}` used in trait"));
12861286
} else {
12871287
err.note_trait_signature(trait_m.name, trait_m.signature(tcx));
@@ -1389,7 +1389,7 @@ fn compare_number_of_generics<'tcx>(
13891389
.collect();
13901390
(Some(arg_spans), impl_trait_spans)
13911391
} else {
1392-
let trait_span = tcx.hir().span_if_local(trait_.def_id);
1392+
let trait_span = tcx.hir_span_if_local(trait_.def_id);
13931393
(trait_span.map(|s| vec![s]), vec![])
13941394
};
13951395

@@ -1481,7 +1481,7 @@ fn compare_number_of_method_arguments<'tcx>(
14811481
}
14821482
})
14831483
})
1484-
.or_else(|| tcx.hir().span_if_local(trait_m.def_id));
1484+
.or_else(|| tcx.hir_span_if_local(trait_m.def_id));
14851485

14861486
let (impl_m_sig, _) = &tcx.hir_expect_impl_item(impl_m.def_id.expect_local()).expect_fn();
14871487
let pos = impl_number_args.saturating_sub(1);
@@ -2366,7 +2366,7 @@ fn try_report_async_mismatch<'tcx>(
23662366
return Err(tcx.sess.dcx().emit_err(MethodShouldReturnFuture {
23672367
span: tcx.def_span(impl_m.def_id),
23682368
method_name: tcx.item_ident(impl_m.def_id),
2369-
trait_item_span: tcx.hir().span_if_local(trait_m.def_id),
2369+
trait_item_span: tcx.hir_span_if_local(trait_m.def_id),
23702370
}));
23712371
}
23722372
}

compiler/rustc_hir_analysis/src/check/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ fn missing_items_err(
243243
tcx.impl_trait_ref(impl_def_id).unwrap().instantiate_identity(),
244244
));
245245
let code = format!("{padding}{snippet}\n{padding}");
246-
if let Some(span) = tcx.hir().span_if_local(trait_item.def_id) {
246+
if let Some(span) = tcx.hir_span_if_local(trait_item.def_id) {
247247
missing_trait_item_label
248248
.push(errors::MissingTraitItemLabel { span, item: trait_item.name });
249249
missing_trait_item.push(errors::MissingTraitItemSuggestion {
@@ -534,7 +534,7 @@ fn bad_variant_count<'tcx>(tcx: TyCtxt<'tcx>, adt: ty::AdtDef<'tcx>, sp: Span, d
534534
let variant_spans: Vec<_> = adt
535535
.variants()
536536
.iter()
537-
.map(|variant| tcx.hir().span_if_local(variant.def_id).unwrap())
537+
.map(|variant| tcx.hir_span_if_local(variant.def_id).unwrap())
538538
.collect();
539539
let (mut spans, mut many) = (Vec::new(), None);
540540
if let [start @ .., end] = &*variant_spans {

compiler/rustc_hir_analysis/src/collect/generics_of.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,7 @@ pub(super) fn generics_of(tcx: TyCtxt<'_>, def_id: LocalDefId) -> ty::Generics {
116116
{
117117
// enum variant discriminants are not allowed to use any kind of generics
118118
None
119-
} else if let Some(param_id) =
120-
tcx.hir().opt_const_param_default_param_def_id(hir_id)
119+
} else if let Some(param_id) = tcx.hir_opt_const_param_default_param_def_id(hir_id)
121120
{
122121
// If the def_id we are calling generics_of on is an anon ct default i.e:
123122
//

compiler/rustc_hir_analysis/src/collect/predicates_of.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ pub(super) fn explicit_predicates_of<'tcx>(
508508
if matches!(def_kind, DefKind::AnonConst)
509509
&& tcx.features().generic_const_exprs()
510510
&& let Some(defaulted_param_def_id) =
511-
tcx.hir().opt_const_param_default_param_def_id(tcx.local_def_id_to_hir_id(def_id))
511+
tcx.hir_opt_const_param_default_param_def_id(tcx.local_def_id_to_hir_id(def_id))
512512
{
513513
// In `generics_of` we set the generics' parent to be our parent's parent which means that
514514
// we lose out on the predicates of our actual parent if we dont return those predicates here.

compiler/rustc_hir_analysis/src/collect/resolve_bound_vars.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -1529,7 +1529,7 @@ impl<'a, 'tcx> BoundVarContext<'a, 'tcx> {
15291529
if let ResolvedArg::LateBound(..) = def
15301530
&& let Some(what) = crossed_late_boundary
15311531
{
1532-
let use_span = self.tcx.hir().span(hir_id);
1532+
let use_span = self.tcx.hir_span(hir_id);
15331533
let def_span = self.tcx.def_span(param_def_id);
15341534
let guar = match self.tcx.def_kind(param_def_id) {
15351535
DefKind::ConstParam => {
@@ -1576,11 +1576,11 @@ impl<'a, 'tcx> BoundVarContext<'a, 'tcx> {
15761576
} => {
15771577
let guar = self.tcx.dcx().emit_err(match self.tcx.def_kind(param_def_id) {
15781578
DefKind::TyParam => errors::LateBoundInApit::Type {
1579-
span: self.tcx.hir().span(hir_id),
1579+
span: self.tcx.hir_span(hir_id),
15801580
param_span: self.tcx.def_span(param_def_id),
15811581
},
15821582
DefKind::ConstParam => errors::LateBoundInApit::Const {
1583-
span: self.tcx.hir().span(hir_id),
1583+
span: self.tcx.hir_span(hir_id),
15841584
param_span: self.tcx.def_span(param_def_id),
15851585
},
15861586
kind => {
@@ -1605,7 +1605,7 @@ impl<'a, 'tcx> BoundVarContext<'a, 'tcx> {
16051605

16061606
self.tcx
16071607
.dcx()
1608-
.span_bug(self.tcx.hir().span(hir_id), format!("could not resolve {param_def_id:?}"));
1608+
.span_bug(self.tcx.hir_span(hir_id), format!("could not resolve {param_def_id:?}"));
16091609
}
16101610

16111611
#[instrument(level = "debug", skip(self))]

compiler/rustc_hir_analysis/src/hir_ty_lowering/bounds.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,7 @@ impl<'tcx> dyn HirTyLowerer<'tcx> + '_ {
684684
return Err(self.dcx().emit_err(crate::errors::ReturnTypeNotationOnNonRpitit {
685685
span: path_span,
686686
ty: tcx.liberate_late_bound_regions(item_def_id, output),
687-
fn_span: tcx.hir().span_if_local(item_def_id),
687+
fn_span: tcx.hir_span_if_local(item_def_id),
688688
note: (),
689689
}));
690690
};

compiler/rustc_hir_analysis/src/hir_ty_lowering/cmse.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ pub(crate) fn validate_cmse_abi<'tcx>(
3232
span,
3333
..
3434
}) => *span,
35-
_ => tcx.hir().span(hir_id),
35+
_ => tcx.hir_span(hir_id),
3636
};
3737
struct_span_code_err!(
3838
tcx.dcx(),

compiler/rustc_hir_analysis/src/hir_ty_lowering/errors.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -882,7 +882,7 @@ impl<'tcx> dyn HirTyLowerer<'tcx> + '_ {
882882

883883
let rename_message = if is_shadowed { ", consider renaming it" } else { "" };
884884

885-
if let Some(sp) = tcx.hir().span_if_local(item.def_id) {
885+
if let Some(sp) = tcx.hir_span_if_local(item.def_id) {
886886
err.span_label(
887887
sp,
888888
format!("`{}{}` defined here{}", prefix, item.name, rename_message),
@@ -1381,7 +1381,7 @@ pub(crate) fn fn_trait_to_string(
13811381
.find_map(|c| {
13821382
if c.ident.name == sym::Output
13831383
&& let Some(ty) = c.ty()
1384-
&& ty.span != tcx.hir().span(trait_segment.hir_id)
1384+
&& ty.span != tcx.hir_span(trait_segment.hir_id)
13851385
{
13861386
tcx.sess.source_map().span_to_snippet(ty.span).ok()
13871387
} else {

compiler/rustc_hir_analysis/src/hir_ty_lowering/generics.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ fn generic_arg_mismatch_err(
9292
GenericArg::Type(hir::Ty { kind: hir::TyKind::Array(_, len), .. }),
9393
GenericParamDefKind::Const { .. },
9494
) if tcx.type_of(param.def_id).skip_binder() == tcx.types.usize => {
95-
let snippet = sess.source_map().span_to_snippet(tcx.hir().span(len.hir_id));
95+
let snippet = sess.source_map().span_to_snippet(tcx.hir_span(len.hir_id));
9696
if let Ok(snippet) = snippet {
9797
err.span_suggestion(
9898
arg.span(),

compiler/rustc_hir_analysis/src/hir_ty_lowering/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1066,7 +1066,7 @@ impl<'tcx> dyn HirTyLowerer<'tcx> + '_ {
10661066
let bound_span = tcx
10671067
.associated_items(bound_id)
10681068
.find_by_name_and_kind(tcx, assoc_name, assoc_kind, bound_id)
1069-
.and_then(|item| tcx.hir().span_if_local(item.def_id));
1069+
.and_then(|item| tcx.hir_span_if_local(item.def_id));
10701070

10711071
if let Some(bound_span) = bound_span {
10721072
err.span_label(
@@ -1400,7 +1400,7 @@ impl<'tcx> dyn HirTyLowerer<'tcx> + '_ {
14001400
);
14011401
}
14021402

1403-
if let Some(sp) = tcx.hir().span_if_local(adt_def.did()) {
1403+
if let Some(sp) = tcx.hir_span_if_local(adt_def.did()) {
14041404
err.span_label(sp, format!("variant `{assoc_ident}` not found here"));
14051405
}
14061406

compiler/rustc_hir_analysis/src/hir_wf_check.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ fn diagnostic_hir_wf_check<'tcx>(
170170
..
171171
}) => vec![*ty],
172172
hir::Node::AnonConst(_) => {
173-
if let Some(const_param_id) = tcx.hir().opt_const_param_default_param_def_id(hir_id)
173+
if let Some(const_param_id) = tcx.hir_opt_const_param_default_param_def_id(hir_id)
174174
&& let hir::Node::GenericParam(hir::GenericParam {
175175
kind: hir::GenericParamKind::Const { ty, .. },
176176
..

compiler/rustc_hir_analysis/src/outlives/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ fn inferred_outlives_of(tcx: TyCtxt<'_>, item_def_id: LocalDefId) -> &[(ty::Clau
2525
}
2626
DefKind::AnonConst if tcx.features().generic_const_exprs() => {
2727
let id = tcx.local_def_id_to_hir_id(item_def_id);
28-
if tcx.hir().opt_const_param_default_param_def_id(id).is_some() {
28+
if tcx.hir_opt_const_param_default_param_def_id(id).is_some() {
2929
// In `generics_of` we set the generics' parent to be our parent's parent which means that
3030
// we lose out on the predicates of our actual parent if we dont return those predicates here.
3131
// (See comment in `generics_of` for more information on why the parent shenanigans is necessary)

compiler/rustc_hir_typeck/src/callee.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -771,7 +771,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
771771
format!("this {descr} returns an unsized value `{output_ty}`, so it cannot be called")
772772
);
773773
if let DefIdOrName::DefId(def_id) = maybe_def
774-
&& let Some(def_span) = self.tcx.hir().span_if_local(def_id)
774+
&& let Some(def_span) = self.tcx.hir_span_if_local(def_id)
775775
{
776776
err.span_label(def_span, "the callable type is defined here");
777777
}
@@ -780,7 +780,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
780780
}
781781
}
782782

783-
if let Some(span) = self.tcx.hir().res_span(def) {
783+
if let Some(span) = self.tcx.hir_res_span(def) {
784784
let callee_ty = callee_ty.to_string();
785785
let label = match (unit_variant, inner_callee_path) {
786786
(Some((_, kind, path)), _) => {

compiler/rustc_hir_typeck/src/closure.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -970,7 +970,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
970970
self.typeck_results.borrow_mut().user_provided_sigs.insert(expr_def_id, c_result);
971971

972972
// Normalize only after registering in `user_provided_sigs`.
973-
self.normalize(self.tcx.hir().span(hir_id), result)
973+
self.normalize(self.tcx.hir_span(hir_id), result)
974974
}
975975

976976
/// Invoked when we are translating the coroutine that results

compiler/rustc_hir_typeck/src/demand.rs

+2-4
Original file line numberDiff line numberDiff line change
@@ -999,10 +999,8 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
999999
let container = with_no_trimmed_paths!(self.tcx.def_path_str(container_id));
10001000
for def_id in pick.import_ids {
10011001
let hir_id = self.tcx.local_def_id_to_hir_id(def_id);
1002-
path_span.push_span_label(
1003-
self.tcx.hir().span(hir_id),
1004-
format!("`{container}` imported here"),
1005-
);
1002+
path_span
1003+
.push_span_label(self.tcx.hir_span(hir_id), format!("`{container}` imported here"));
10061004
}
10071005
let tail = with_no_trimmed_paths!(match &other_methods_in_scope[..] {
10081006
[] => return,

compiler/rustc_hir_typeck/src/expr.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3239,7 +3239,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
32393239
Some(x) => self.tcx.local_def_id_to_hir_id(x),
32403240
None => return,
32413241
};
3242-
let param_span = self.tcx.hir().span(param_hir_id);
3242+
let param_span = self.tcx.hir_span(param_hir_id);
32433243
let param_name = self.tcx.hir_ty_param_name(param_def_id.expect_local());
32443244

32453245
err.span_label(param_span, format!("type parameter '{param_name}' declared here"));

0 commit comments

Comments
 (0)