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
In the Prelude we have the primitive for fin declared with the wrong kind:
fin
/** Assert that a numeric type is a proper natural number (not 'inf'). */ primitive type fin : * -> Prop
(show be fin : # -> Prop)
fin : # -> Prop
Surprisingly this does not lead a whole lot of errors in Cryptol, meaning that we are not checking the kinds correctly.
The text was updated successfully, but these errors were encountered:
c3eca4f
yav
No branches or pull requests
In the Prelude we have the primitive for
fin
declared with the wrong kind:(show be
fin : # -> Prop
)Surprisingly this does not lead a whole lot of errors in Cryptol, meaning that we are not checking the kinds correctly.
The text was updated successfully, but these errors were encountered: