You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When charon is given incorrect rust code, it often crashes before letting rustc display the error to the user. We should make sure we always check the code before translating it.
This is straightforward to do (simply hook into after_analysis), but we would run into stealing issues. Hence this likely requires a fully general fix to stealing issues, such as using optimized MIR or evaluated values for constants. See also hacspec/hax#27.
The text was updated successfully, but these errors were encountered:
When charon is given incorrect rust code, it often crashes before letting rustc display the error to the user. We should make sure we always check the code before translating it.
This is straightforward to do (simply hook into
after_analysis
), but we would run into stealing issues. Hence this likely requires a fully general fix to stealing issues, such as using optimized MIR or evaluated values for constants. See also hacspec/hax#27.The text was updated successfully, but these errors were encountered: