mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-03 19:52:36 +00:00
18 lines
279 B
Nim
18 lines
279 B
Nim
discard """
|
|
outputsub: '''Error: invalid indentation'''
|
|
"""
|
|
|
|
# feature request #1473
|
|
import macros
|
|
|
|
macro test(text: string): expr =
|
|
try:
|
|
result = parseExpr(text.strVal)
|
|
except ValueError:
|
|
result = newLit getCurrentExceptionMsg()
|
|
|
|
const
|
|
a = test("foo&&")
|
|
|
|
echo a
|