diff options
| author | Oli Scherer <git-spam-no-reply9815368754983@oli-obk.de> | 2023-09-27 11:20:17 +0000 |
|---|---|---|
| committer | Oli Scherer <git-spam-no-reply9815368754983@oli-obk.de> | 2023-09-28 16:13:38 +0000 |
| commit | 6ea2db7c2d78182fabf66a8c6ffc856446e1cf81 (patch) | |
| tree | b3f085e5d90b8de6cdfa4eb14a7b1f64c4ee13ad /compiler/rustc_const_eval/src | |
| parent | 479fa4a74d74b69c9bc5fc330519a92590f170e4 (diff) | |
| download | rust-6ea2db7c2d78182fabf66a8c6ffc856446e1cf81.tar.gz rust-6ea2db7c2d78182fabf66a8c6ffc856446e1cf81.zip | |
Strip `OpaqueCast` during `RevealAll`.
Diffstat (limited to 'compiler/rustc_const_eval/src')
| -rw-r--r-- | compiler/rustc_const_eval/src/interpret/projection.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_const_eval/src/interpret/projection.rs b/compiler/rustc_const_eval/src/interpret/projection.rs index 6c720ac4a57..ca5e19ac1fa 100644 --- a/compiler/rustc_const_eval/src/interpret/projection.rs +++ b/compiler/rustc_const_eval/src/interpret/projection.rs @@ -316,7 +316,7 @@ where { use rustc_middle::mir::ProjectionElem::*; Ok(match proj_elem { - OpaqueCast(ty) => base.transmute(self.layout_of(ty)?, self)?, + OpaqueCast(ty) => bug!("OpaqueCast({ty}) encountered after borrowck"), Field(field, _) => self.project_field(base, field.index())?, Downcast(_, variant) => self.project_downcast(base, variant)?, Deref => self.deref_pointer(&base.to_op(self)?)?.into(), |
