summary refs log tree commit diff stats
path: root/tests/compile
diff options
context:
space:
mode:
Diffstat (limited to 'tests/compile')
-rwxr-xr-xtests/compile/tmacro1.nim10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/compile/tmacro1.nim b/tests/compile/tmacro1.nim
index 52c86e7e9..b4fce9776 100755
--- a/tests/compile/tmacro1.nim
+++ b/tests/compile/tmacro1.nim
@@ -18,13 +18,3 @@ macro test*(a: stmt): stmt =
 
 test:
   "hi"
-
-macro dump(n: stmt): stmt =
-  dump(n)
-  if kind(n) == nnkNone:
-    nil
-  else:
-    hint($kind(n))
-    for i in countUp(0, len(n)-1):
-      nil
-