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 program hangs on compilation (via idris Stuck.idr -o stuck):
idris Stuck.idr -o stuck
module Main %default total f : (Eq a, Show a) => a -> a -> IO () f _ _ = pure () partial main : IO () main = f [ 10, 21, 5, 22, 11, 1, 12, 6, 13, 3, 14, 7 ] [1,2]
It looks like the fancy long list become an issue for compiler. Reducing it a bit makes the compilation finish.
idris Stuck.idr -o stuck the program listed above.
The compilation finishes.
Compilation appears to hang.
$> idris -v 1.3.0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following program hangs on compilation (via
idris Stuck.idr -o stuck
):It looks like the fancy long list become an issue for compiler. Reducing it a bit makes the compilation finish.
Steps to Reproduce
idris Stuck.idr -o stuck
the program listed above.Expected Behavior
The compilation finishes.
Observed Behavior
Compilation appears to hang.
The text was updated successfully, but these errors were encountered: