diff options
author | Araq <rumpf_a@web.de> | 2012-07-18 00:02:53 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-07-18 00:02:53 +0200 |
commit | 83deb233eec4b80b37146024df64a11a437da386 (patch) | |
tree | d72289a76633724ed2bc1486faa42709a9730941 /tests/compile | |
parent | 832da8a303793ac23a662dd76ff93caa2d5eb764 (diff) | |
download | Nim-83deb233eec4b80b37146024df64a11a437da386.tar.gz |
attempt to fix DLL generation
Diffstat (limited to 'tests/compile')
-rw-r--r-- | tests/compile/tglobalforvar.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/compile/tglobalforvar.nim b/tests/compile/tglobalforvar.nim index 9f61ebcab..af75df5c8 100644 --- a/tests/compile/tglobalforvar.nim +++ b/tests/compile/tglobalforvar.nim @@ -1,5 +1,5 @@ -var funcs: seq[proc (): int] = @[] +var funcs: seq[proc (): int {.nimcall.}] = @[] for i in 0..10: funcs.add((proc (): int = return i * i)) |