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
This fails with "Unexpected bracket expression array[" as genny tries to call getTypeInst on a A[B].
getTypeInst
A[B]
genny/src/genny/internal.nim
Lines 92 to 97 in 33f0e5a
import genny type Foo = object val: array[3, uint64] proc sum(r: var Foo, a, b: Foo) = for i in 0 ..< r.val.len: r.val[i] = a.val[i] + b.val[i] exportObject Foo: procs: sum(Foo, Foo, Foo) writeFiles("bindings/generated", "test") include generated/internal
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This fails with "Unexpected bracket expression array[" as genny tries to call
getTypeInst
on aA[B]
.genny/src/genny/internal.nim
Lines 92 to 97 in 33f0e5a
The text was updated successfully, but these errors were encountered: