summary refs log tree commit diff stats
path: root/tests/tobject2.nim
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2008-11-16 22:08:15 +0100
committerAndreas Rumpf <rumpf_a@web.de>2008-11-16 22:08:15 +0100
commit8b2a9401a147bd0b26cd2976ae71a1022fbde8cc (patch)
treec1a1323003ee8148af5dc60bcf1b88157dd00eb8 /tests/tobject2.nim
parent972c51086152bd45aef4eb17c099fa3472a19d04 (diff)
downloadNim-8b2a9401a147bd0b26cd2976ae71a1022fbde8cc.tar.gz
version 0.7.0
Diffstat (limited to 'tests/tobject2.nim')
-rw-r--r--tests/tobject2.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tobject2.nim b/tests/tobject2.nim
index e8e932422..8f69a6bac 100644
--- a/tests/tobject2.nim
+++ b/tests/tobject2.nim
@@ -7,7 +7,7 @@ type
   TPoint3d = object of TPoint2d
     z: int # added a field
 
-proc getPoint(var p: TPoint2d) =
+proc getPoint( p: var TPoint2d) =
   {.breakpoint.}
   writeln(stdout, p.x)