summary refs log tree commit diff stats
path: root/tests/vm/texcl.nim
diff options
context:
space:
mode:
authorArne Döring <arne.doering@gmx.net>2017-07-25 09:28:23 +0200
committerAndreas Rumpf <rumpf_a@web.de>2017-07-25 09:28:23 +0200
commit000b8afd26fa16684a116d9afe798ea94df9c270 (patch)
treee5295df748b90c5027e44adfa3a442031534572c /tests/vm/texcl.nim
parent52ff244d5d2775fa4d13f4e2b9a996f411281312 (diff)
downloadNim-000b8afd26fa16684a116d9afe798ea94df9c270.tar.gz
Remove expr/stmt (#5857)
Diffstat (limited to 'tests/vm/texcl.nim')
-rw-r--r--tests/vm/texcl.nim6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/vm/texcl.nim b/tests/vm/texcl.nim
index 4ccfd6bfa..e23a423fe 100644
--- a/tests/vm/texcl.nim
+++ b/tests/vm/texcl.nim
@@ -15,13 +15,13 @@ proc initOpts(): set[nlOptions] =
   result.incl nloDebug
   result.incl nloNone
   result.excl nloDebug
-  
+
 const cOpts = initOpts()
 
-macro nlo(): stmt =
+macro nlo(): typed =
   nlOpts.incl(nloNone)
   nlOpts.excl(nloDebug)
   result = newEmptyNode()
 
 nlo()
-echo nloDebug in cOpts
\ No newline at end of file
+echo nloDebug in cOpts