summary refs log tree commit diff stats
path: root/tests/compile
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2012-07-18 00:02:53 +0200
committerAraq <rumpf_a@web.de>2012-07-18 00:02:53 +0200
commit83deb233eec4b80b37146024df64a11a437da386 (patch)
treed72289a76633724ed2bc1486faa42709a9730941 /tests/compile
parent832da8a303793ac23a662dd76ff93caa2d5eb764 (diff)
downloadNim-83deb233eec4b80b37146024df64a11a437da386.tar.gz
attempt to fix DLL generation
Diffstat (limited to 'tests/compile')
-rw-r--r--tests/compile/tglobalforvar.nim2
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))