The Clone::clone call is now a ConstantKind::Val, not a ConstantKind::Ty

This commit is contained in:
Scott McMurray 2022-03-10 01:50:47 -08:00
parent 697464a487
commit 705b8807d5

View File

@ -2214,7 +2214,7 @@ pub fn constant(&self) -> Option<&Constant<'tcx>> {
/// While this is unlikely in general, it's the normal case of what you'll
/// find as the `func` in a [`TerminatorKind::Call`].
pub fn const_fn_def(&self) -> Option<(DefId, SubstsRef<'tcx>)> {
let const_ty = self.constant()?.literal.const_for_ty()?.ty();
let const_ty = self.constant()?.literal.ty();
if let ty::FnDef(def_id, substs) = *const_ty.kind() { Some((def_id, substs)) } else { None }
}
}