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
module const_msg { const MSG: Msg type Msg = Foo | Bar } module MC { import const_msg(MSG = Foo).* }
❯ quint typecheck const_list.qnt
The spec above fails to type check with:
/Users/romac/Informal/Code/quint/const_list.qnt:8:3 - error: [QNT099] Found cyclic declarations. Use fold and foldl instead of recursion 8: import const_list(MSG = Foo).* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ /Users/romac/Informal/Code/quint/const_list.qnt:8:27 - error: [QNT099] Found cyclic declarations. Use fold and foldl instead of recursion 8: import const_list(MSG = Foo).* ^^^ error: parsing failed
The spec should type check.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Actual result
The spec above fails to type check with:
Expected result
The spec should type check.
The text was updated successfully, but these errors were encountered: