diff options
Diffstat (limited to 'tests/macros/tdebugstmt.nim')
-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 |