mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
Fix build failure of rustfmt
This commit is contained in:
parent
cb2462c53f
commit
fa094044a9
@ -71,11 +71,12 @@ impl<'mir, 'tcx> Search<'mir, 'tcx> {
|
||||
|
||||
let func_ty = func.ty(body, tcx);
|
||||
if let ty::FnDef(callee, substs) = *func_ty.kind() {
|
||||
let normalized_substs = tcx.normalize_erasing_regions(param_env, substs);
|
||||
let (callee, call_substs) =
|
||||
if let Ok(Some(instance)) = Instance::resolve(tcx, param_env, callee, substs) {
|
||||
if let Ok(Some(instance)) = Instance::resolve(tcx, param_env, callee, normalized_substs) {
|
||||
(instance.def_id(), instance.substs)
|
||||
} else {
|
||||
(callee, substs)
|
||||
(callee, normalized_substs)
|
||||
};
|
||||
|
||||
// FIXME(#57965): Make this work across function boundaries
|
||||
|
Loading…
Reference in New Issue
Block a user