diff options
Diffstat (limited to 'tests/accept/compile/tassign.nim')
-rwxr-xr-x | tests/accept/compile/tassign.nim | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/tests/accept/compile/tassign.nim b/tests/accept/compile/tassign.nim deleted file mode 100755 index f51c20783..000000000 --- a/tests/accept/compile/tassign.nim +++ /dev/null @@ -1,31 +0,0 @@ -# Test the assignment operator for complex types which need RTTI - -type - TRec = object - x, y: int - s: string - seq: seq[string] - arr: seq[seq[array[0..3, string]]] - TRecSeq = seq[TRec] - -proc test() = - var - a, b: TRec - a.x = 1 - a.y = 2 - a.s = "Hallo!" - a.seq = @["abc", "def", "ghi", "jkl"] - a.arr = @[] - setLen(a.arr, 4) - a.arr[0] = @[] - a.arr[1] = @[] - - 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) - -test() |