Files
Nim/tests/macros/texprcolonexpr.nim
2017-07-25 09:28:23 +02:00

20 lines
245 B
Nim

discard """
msg: '''
Infix
Ident !"=>"
Call
Ident !"name"
Ident !"a"
ExprColonExpr
Ident !"b"
Ident !"cint"
NilLit nil
'''
"""
import macros
macro def(x): untyped =
echo treeRepr(x)
def name(a, b:cint) => nil