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
type constraints
:browse
Declaration in module:
type T n = (fin n, n >= 1)
If we type :browse we get this:
type constraint T n = (&&) fin n (n >= 1)
Note that there are two bugs here: fin is not parenthesized, and we see && instead of the tuple form.
fin
&&
The text was updated successfully, but these errors were encountered:
type constrazints
Pretty-print Prop constructor PAnd using tuple-style syntax.
PAnd
e1fb6e9
This matches the syntax used for parsing type constraint synonyms. Fixes #731.
Add regression test for #731.
37f1fd8
Successfully merging a pull request may close this issue.
Declaration in module:
If we type
:browse
we get this:Note that there are two bugs here:
fin
is not parenthesized, and we see&&
instead of the tuple form.The text was updated successfully, but these errors were encountered: