make unevaluated const substs optional

This commit is contained in:
lcnr
2021-03-16 00:05:45 +01:00
parent 4d627fc41b
commit 19d1fe21c7
3 changed files with 4 additions and 12 deletions

View File

@@ -346,11 +346,7 @@ impl<'a, 'tcx> ConstEvalLateContext<'a, 'tcx> {
.tcx
.const_eval_resolve(
self.param_env,
ty::Unevaluated {
def: ty::WithOptConstParam::unknown(def_id),
substs,
promoted: None,
},
ty::Unevaluated::new(ty::WithOptConstParam::unknown(def_id), substs),
None,
)
.ok()