summary refs log tree commit diff stats
path: root/tests/run
diff options
context:
space:
mode:
authorZahary Karadjov <zahary@gmail.com>2012-10-16 02:12:41 +0300
committerZahary Karadjov <zahary@gmail.com>2012-10-16 02:21:28 +0300
commit2efdf3df81fc1a451f4444e822a870c59e27e586 (patch)
tree2e693677d02842dcd4dc980b6f10f7b846630acd /tests/run
parent3c9e3a6a716326c48e509e7b09596e2a1bf900fa (diff)
downloadNim-2efdf3df81fc1a451f4444e822a870c59e27e586.tar.gz
fixes #106
Diffstat (limited to 'tests/run')
-rwxr-xr-xtests/run/tarray2.nim32
1 files changed, 22 insertions, 10 deletions
diff --git a/tests/run/tarray2.nim b/tests/run/tarray2.nim
index 048f51795..b6adabb45 100755
--- a/tests/run/tarray2.nim
+++ b/tests/run/tarray2.nim
@@ -1,24 +1,36 @@
 discard """
   file: "tarray2.nim"
-  output: "[16, 25, 36]"
+  output: "[4, 5, 6]\n\n[16, 25, 36]\n\n[16, 25, 36]"
 """
-# simple check for one dimensional arrays

-

-type

-  TMyArray = array[0..2, int]

-

-proc mul(a, b: TMyarray): TMyArray =

+# simple check for one dimensional arrays
+
+type
+  TMyArray = array[0..2, int]
+
+  TObj = object
+    arr: TMyarray
+  
+proc mul(a, b: TMyarray): TMyArray =
   result = a
   for i in 0..len(a)-1:
     result[i] = a[i] * b[i]
 
 var
-  x, y, z: TMyArray
- 
+  x, y: TMyArray
+  o: TObj
+
+proc varArr1(x: var TMyArray): var TMyArray = x
+proc varArr2(x: var TObj): var TMyArray = x.arr
+
 x = [ 4, 5, 6 ]
+echo repr(varArr1(x))
+
 y = x
 echo repr(mul(x, y))
 
-#OUT [16, 25, 36]

+o.arr = mul(x, y)
+echo repr(varArr2(o))
+
+#OUT [16, 25, 36]