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
import macros macro test*(a: stmt): stmt = proc testproc(recurse: int) = echo "Thats weird" var o : PNimrodNode = nil echo " no its not!" o = newNimNode(nnkNone) if recurse > 0: testproc(recurse - 1) testproc(5) test: "hi"
If you remove the = nil, or replace it with newNimNode(nnkNone) it works...
Fails with Error: test_case_of.nim(6): internal error: evalAux: nkNone
The text was updated successfully, but these errors were encountered:
more fixes for dy(n)lib typo; closed by 9b372f4
Sorry, something went wrong.
more fixes for dy(n)lib typo; fixes nim-lang#15
9b372f4
173cd55
No branches or pull requests
If you remove the = nil, or replace it with newNimNode(nnkNone) it works...
Fails with
Error: test_case_of.nim(6): internal error: evalAux: nkNone
The text was updated successfully, but these errors were encountered: