diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2017-09-30 21:35:30 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2017-09-30 21:35:30 +0200 |
commit | ddc131cf07972decc206e033b2dd85a42eb1c98d (patch) | |
tree | 91cdafb802ebef32fd1f4d8b8347409165dee463 /tests/macros | |
parent | b2c358be96e496c37f4d02b0e886a06ed503af9e (diff) | |
download | Nim-ddc131cf07972decc206e033b2dd85a42eb1c98d.tar.gz |
the parser finally parses 'echo {1,2}' as it should
Diffstat (limited to 'tests/macros')
-rw-r--r-- | tests/macros/tdebugstmt.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/macros/tdebugstmt.nim b/tests/macros/tdebugstmt.nim index 740ae7b05..69e610075 100644 --- a/tests/macros/tdebugstmt.nim +++ b/tests/macros/tdebugstmt.nim @@ -21,7 +21,7 @@ macro debug(n: varargs[untyped]): untyped = add(result, newCall("writeLine", newIdentNode("stdout"), n[i])) var - a: array [0..10, int] + a: array[0..10, int] x = "some string" a[0] = 42 a[1] = 45 |