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
This snippet:
```pulse ghost fn f (p:prop) (#_ : squash p) requires emp ensures emp { (); } ``` ```pulse ghost fn g (p:prop) requires pure p ensures emp { f p } ```
Gives an error in the call to f:
f
- Prover error: ill-typed substitutions (prover could not prove uvar _#3) - pst.pg = [_#2 : squash p, p#1 : prop] - pst.uvs = [?uu___24309#3 : squash p] - pst.ss = [] - pst.remaining_ctxt = [] - pst.unsolved = []
But changing that line to:
f p #()
works perfectly fine.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This snippet:
Gives an error in the call to
f
:But changing that line to:
works perfectly fine.
The text was updated successfully, but these errors were encountered: