const destructor error when using while let Some
with generic type
#109427
Labels
A-const-eval
Area: Constant evaluation, covers all const contexts (static, const fn, ...)
A-MIR
Area: Mid-level IR (MIR) - https://blog.rust-lang.org/2016/04/19/MIR.html
C-enhancement
Category: An issue proposing an enhancement or a PR with one.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
I tried this code: play
I expected to see this happen: compiles
Instead, this happened:
This is a limitation in running checks on the MIR for dropping generic types. If we assert that
T: ~const Destruct
, we can get the MIR:Notice
drop(_3)
drops theOption
even though we know it isNone
at that point.Related: #92766
The text was updated successfully, but these errors were encountered: