Skip to content

Commit 5c7a7d9

Browse files
Rollup merge of rust-lang#113319 - lcnr:type-param-def-def-id, r=compiler-errors
`TypeParameterDefinition` always require a `DefId` the `None` case never actually reaches diagnostics so it feels better for diagnostics to be able to rely on the `DefId` being there, cc rust-lang#113310
2 parents a1f8edb + 594cd84 commit 5c7a7d9

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

compiler/rustc_hir_typeck/src/fn_ctxt/adjust_fulfillment_errors.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
254254
type BreakTy = ty::GenericArg<'tcx>;
255255
fn visit_ty(&mut self, ty: Ty<'tcx>) -> std::ops::ControlFlow<Self::BreakTy> {
256256
if let Some(origin) = self.0.type_var_origin(ty)
257-
&& let rustc_infer::infer::type_variable::TypeVariableOriginKind::TypeParameterDefinition(_, Some(def_id)) =
257+
&& let rustc_infer::infer::type_variable::TypeVariableOriginKind::TypeParameterDefinition(_, def_id) =
258258
origin.kind
259259
&& let generics = self.0.tcx.generics_of(self.1)
260260
&& let Some(index) = generics.param_def_id_to_index(self.0.tcx, def_id)

compiler/rustc_infer/src/infer/error_reporting/need_type_info.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -265,9 +265,9 @@ impl<'tcx> InferCtxt<'tcx> {
265265
kind: UnderspecifiedArgKind::Type {
266266
prefix: "type parameter".into(),
267267
},
268-
parent: def_id.and_then(|def_id| {
269-
InferenceDiagnosticsParentData::for_def_id(self.tcx, def_id)
270-
}),
268+
parent: InferenceDiagnosticsParentData::for_def_id(
269+
self.tcx, def_id,
270+
),
271271
};
272272
}
273273
}

compiler/rustc_infer/src/infer/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1110,7 +1110,7 @@ impl<'tcx> InferCtxt<'tcx> {
11101110
TypeVariableOrigin {
11111111
kind: TypeVariableOriginKind::TypeParameterDefinition(
11121112
param.name,
1113-
Some(param.def_id),
1113+
param.def_id,
11141114
),
11151115
span,
11161116
},

compiler/rustc_infer/src/infer/type_variable.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ pub enum TypeVariableOriginKind {
123123
NormalizeProjectionType,
124124
TypeInference,
125125
OpaqueTypeInference(DefId),
126-
TypeParameterDefinition(Symbol, Option<DefId>),
126+
TypeParameterDefinition(Symbol, DefId),
127127

128128
/// One of the upvars or closure kind parameters in a `ClosureSubsts`
129129
/// (before it has been determined).

compiler/rustc_trait_selection/src/traits/error_reporting/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2646,11 +2646,11 @@ impl<'tcx> InferCtxtPrivExt<'tcx> for TypeErrCtxt<'_, 'tcx> {
26462646
}
26472647

26482648
fn fold_ty(&mut self, ty: Ty<'tcx>) -> Ty<'tcx> {
2649-
if let ty::Param(ty::ParamTy { name, .. }) = *ty.kind() {
2649+
if let ty::Param(_) = *ty.kind() {
26502650
let infcx = self.infcx;
26512651
*self.var_map.entry(ty).or_insert_with(|| {
26522652
infcx.next_ty_var(TypeVariableOrigin {
2653-
kind: TypeVariableOriginKind::TypeParameterDefinition(name, None),
2653+
kind: TypeVariableOriginKind::MiscVariable,
26542654
span: DUMMY_SP,
26552655
})
26562656
})

0 commit comments

Comments
 (0)