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

21 lines
355 B
Nim

discard """
outputsub: '''Error: invalid indentation 45'''
"""
# feature request #1473
import macros
macro test(text: string): untyped =
try:
result = parseExpr(text.strVal)
except ValueError:
result = newLit getCurrentExceptionMsg()
const
valid = 45
a = test("foo&&")
b = test("valid")
c = test("\"") # bug #2504
echo a, " ", b