diff options
| author | Michael Goulet <michael@errs.io> | 2024-01-19 20:04:14 +0000 |
|---|---|---|
| committer | Michael Goulet <michael@errs.io> | 2024-01-22 16:50:30 +0000 |
| commit | f700ee4e709abb2243acd0fb8b9928160896c2bd (patch) | |
| tree | d06c504a8d2be6182384b2bc0f0cd8d9ed57bccf /compiler/rustc_const_eval | |
| parent | 30662530506ed29ea29191798cb2ab8aa1249023 (diff) | |
| download | rust-f700ee4e709abb2243acd0fb8b9928160896c2bd.tar.gz rust-f700ee4e709abb2243acd0fb8b9928160896c2bd.zip | |
Do not normalize closure signature when building FnOnce shim
Diffstat (limited to 'compiler/rustc_const_eval')
| -rw-r--r-- | compiler/rustc_const_eval/src/interpret/cast.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler/rustc_const_eval/src/interpret/cast.rs b/compiler/rustc_const_eval/src/interpret/cast.rs index d296ff5928b..0cb5c634b22 100644 --- a/compiler/rustc_const_eval/src/interpret/cast.rs +++ b/compiler/rustc_const_eval/src/interpret/cast.rs @@ -117,8 +117,7 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> { def_id, args, ty::ClosureKind::FnOnce, - ) - .ok_or_else(|| err_inval!(TooGeneric))?; + ); let fn_ptr = self.fn_ptr(FnVal::Instance(instance)); self.write_pointer(fn_ptr, dest)?; } |
