summary refs log tree commit diff stats
path: root/tests/destructor
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2020-07-07 23:10:00 +0200
committerAndreas Rumpf <rumpf_a@web.de>2020-07-08 10:48:12 +0200
commitb17e1efc67a64ce6acd2ddf4f432879f3bf739e2 (patch)
tree88cf6681680f471880671aa342925081541f8576 /tests/destructor
parent87f6a9592cbbace5e8f0d647841b4490bb7c0f1f (diff)
downloadNim-b17e1efc67a64ce6acd2ddf4f432879f3bf739e2.tar.gz
progress
Diffstat (limited to 'tests/destructor')
-rw-r--r--tests/destructor/tmove_objconstr.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/destructor/tmove_objconstr.nim b/tests/destructor/tmove_objconstr.nim
index 5366f4957..0740bd46b 100644
--- a/tests/destructor/tmove_objconstr.nim
+++ b/tests/destructor/tmove_objconstr.nim
@@ -113,7 +113,7 @@ proc myfunc2(x, y: int): tuple[a: MySeqNonCopyable, b:int, c:MySeqNonCopyable] =
   var cc = newMySeq(y, 5.0)
   (a: case x:
     of 1:
-      let (z1, z2) = myfunc(x,y)
+      let (z1, z2) = myfunc(x, y)
       z2
     elif x > 5: raise newException(ValueError, "new error")
     else: newMySeq(x, 1.0),