about summary refs log tree commit diff
path: root/compiler/rustc_const_eval
diff options
context:
space:
mode:
authorMichael Goulet <michael@errs.io>2024-01-19 20:04:14 +0000
committerMichael Goulet <michael@errs.io>2024-01-22 16:50:30 +0000
commitf700ee4e709abb2243acd0fb8b9928160896c2bd (patch)
treed06c504a8d2be6182384b2bc0f0cd8d9ed57bccf /compiler/rustc_const_eval
parent30662530506ed29ea29191798cb2ab8aa1249023 (diff)
downloadrust-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.rs3
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)?;
                     }