summary refs log tree commit diff stats
path: root/tests/assign/tassign.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/assign/tassign.nim')
-rw-r--r--tests/assign/tassign.nim10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/assign/tassign.nim b/tests/assign/tassign.nim
index f51c20783..9a4c1543b 100644
--- a/tests/assign/tassign.nim
+++ b/tests/assign/tassign.nim
@@ -22,10 +22,10 @@ proc test() =
 

   b = a # perform a deep copy here!

   b.seq = @["xyz", "huch", "was", "soll"]

-  writeln(stdout, len(a.seq))

-  writeln(stdout, a.seq[3])

-  writeln(stdout, len(b.seq))

-  writeln(stdout, b.seq[3])

-  writeln(stdout, b.y)

+  writeLine(stdout, len(a.seq))

+  writeLine(stdout, a.seq[3])

+  writeLine(stdout, len(b.seq))

+  writeLine(stdout, b.seq[3])

+  writeLine(stdout, b.y)

 

 test()