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 current system, one can write:
data QpfList2 α | nil | cons : α → QpfList2 Bool → QpfList2 α ^^^^
Notice the improper use of Bool, which means this definition of QpfList2 uses α as an index.
Bool
QpfList2
α
This should throw an error, instead, currently this causes the elaborator to spin forever.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the current system, one can write:
Notice the improper use of
Bool
, which means this definition ofQpfList2
usesα
as an index.This should throw an error, instead, currently this causes the elaborator to spin forever.
The text was updated successfully, but these errors were encountered: