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
Currently we give an error Error: The type abbreviation TreeNode is cyclic on code such as:
Error: The type abbreviation TreeNode is cyclic
type TreeNode = (Number, Option<TreeNode>, Option<TreeNode>)
we should probably support this being recursive interestingly enough the syntax:
type rec TreeNode = (Number, Option<TreeNode>, Option<TreeNode>)
doesn't cause a parsing or well formedness error leading me to believe that this might actually just be a bug rather than a missing feature.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently we give an error
Error: The type abbreviation TreeNode is cyclic
on code such as:we should probably support this being recursive interestingly enough the syntax:
doesn't cause a parsing or well formedness error leading me to believe that this might actually just be a bug rather than a missing feature.
The text was updated successfully, but these errors were encountered: