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
The following gospel specification:
val exists : ('a -> bool) -> 'a list -> bool (*@ b = exists p xs *)
will raise:
$ gospel check file.mli File "file.mli", line 2, characters 8-14: 2 | (*@ b = exists p xs *) ^^^^^^ Error: Syntax error.
The problem is that exists is a reserved keyword, but also the classical name for the exists function.
exists
The text was updated successfully, but these errors were encountered:
This extends to all the keywords, with in particular forall and pure as natural names for functions we would want to specify.
forall
pure
Sorry, something went wrong.
No branches or pull requests
The following gospel specification:
will raise:
The problem is that
exists
is a reserved keyword, but also the classical namefor the exists function.
The text was updated successfully, but these errors were encountered: