diff options
Diffstat (limited to 'tests/macros/texprcolonexpr.nim')
-rw-r--r-- | tests/macros/texprcolonexpr.nim | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/macros/texprcolonexpr.nim b/tests/macros/texprcolonexpr.nim deleted file mode 100644 index 3b2c86b77..000000000 --- a/tests/macros/texprcolonexpr.nim +++ /dev/null @@ -1,19 +0,0 @@ -discard """ - msg: ''' -Infix - Ident !"=>" - Call - Ident !"name" - Ident !"a" - ExprColonExpr - Ident !"b" - Ident !"cint" - NilLit nil -''' -""" -import macros - -macro def(x: stmt): stmt {.immediate.} = - echo treeRepr(x) - -def name(a, b:cint) => nil |