mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
20 lines
323 B
Nim
20 lines
323 B
Nim
discard """
|
|
outputsub: '''Error: invalid indentation 45'''
|
|
"""
|
|
|
|
# feature request #1473
|
|
import macros
|
|
|
|
macro test(text: string): expr =
|
|
try:
|
|
result = parseExpr(text.strVal)
|
|
except ValueError:
|
|
result = newLit getCurrentExceptionMsg()
|
|
|
|
const
|
|
valid = 45
|
|
a = test("foo&&")
|
|
b = test("valid")
|
|
|
|
echo a, " ", b
|