summary refs log tree commit diff stats
path: root/tests/macros/tmacro7.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/macros/tmacro7.nim')
-rw-r--r--tests/macros/tmacro7.nim11
1 files changed, 5 insertions, 6 deletions
diff --git a/tests/macros/tmacro7.nim b/tests/macros/tmacro7.nim
index 3d450c291..602191506 100644
--- a/tests/macros/tmacro7.nim
+++ b/tests/macros/tmacro7.nim
@@ -1,19 +1,20 @@
 discard """
-  output: '''calling!stuff
+output: '''
+calling!stuff
 calling!stuff
 '''
-  joinable: false
+disabled: true
 """
 
+# this test modifies an already semchecked ast (bad things happen)
+# this test relies on the bug #4547
 # issue #7792
 
 import macros
 
-
 proc callProc(str: string) =
   echo "calling!" & str
 
-
 macro testMacro(code: typed): untyped =
   let stmtList = newNimNode(nnkStmtList)
 
@@ -27,11 +28,9 @@ macro testMacro(code: typed): untyped =
 
   result = newEmptyNode()
 
-
 proc main() {.testMacro.} =
   echo "test"
   echo "test2"
 
-
 when isMainModule:
   main()