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
I am trying to generate a function with a function pointer argument.
Code: proc gen_nums(a: int, f: proc(i: int)) = f(a)
Error: exp.nim(30, 1) template/generic instantiation of exportProcs from here exp.nim(27, 30) Error: Invalid node kind nnkProcTy for macros.$
exportProcs
$
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am trying to generate a function with a function pointer argument.
Code:
proc gen_nums(a: int, f: proc(i: int)) =
f(a)
Error:
exp.nim(30, 1) template/generic instantiation of
exportProcs
from hereexp.nim(27, 30) Error: Invalid node kind nnkProcTy for macros.
$
The text was updated successfully, but these errors were encountered: