diff options
Diffstat (limited to 'tests/macros/tmacro_in_template.nim')
-rw-r--r-- | tests/macros/tmacro_in_template.nim | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/macros/tmacro_in_template.nim b/tests/macros/tmacro_in_template.nim deleted file mode 100644 index 8f7753cea..000000000 --- a/tests/macros/tmacro_in_template.nim +++ /dev/null @@ -1,10 +0,0 @@ - -# bug #1944 -import macros - -template t(e: expr): stmt = - macro m(eNode: expr): stmt = - echo eNode.treeRepr - m e - -t 5 |