We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm pretty excited about this version bump as Rust 1.79 stabilized the inline const expressions. Thanks for the efforts!
const
However, my existing codebase breaks at a field-less enum declaration:
enum FieldLess { A = 0, B = 1, C = 2, }
Verus reports:
error: constant evaluation of enum discriminant resulted in non-integer
A repro link to the playground: https://aurorar8-eb5c.andrew.cmu.edu/?version=stable&mode=basic&edition=2021&gist=e87455afc0f418ffddbf2d5b7a2bb149
Hope this is fairly straightforward to resolve!
The text was updated successfully, but these errors were encountered:
probably the same root cause as: #1334
Sorry, something went wrong.
No branches or pull requests
I'm pretty excited about this version bump as Rust 1.79 stabilized the inline
const
expressions. Thanks for the efforts!However, my existing codebase breaks at a field-less enum declaration:
Verus reports:
error: constant evaluation of enum discriminant resulted in non-integer
A repro link to the playground: https://aurorar8-eb5c.andrew.cmu.edu/?version=stable&mode=basic&edition=2021&gist=e87455afc0f418ffddbf2d5b7a2bb149
Hope this is fairly straightforward to resolve!
The text was updated successfully, but these errors were encountered: