summary refs log tree commit diff stats
path: root/tests/tuples
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2017-12-15 13:24:47 +0100
committerAraq <rumpf_a@web.de>2017-12-15 13:24:47 +0100
commitbe87fe91768c48e8af45e3b5cbbac20bd5d049dd (patch)
tree1ae26ab936cb64fd0e3e70bba50d28ec03d878a8 /tests/tuples
parent8db5b32ff73fd01f5fabe50703f3a2f6206275fa (diff)
downloadNim-be87fe91768c48e8af45e3b5cbbac20bd5d049dd.tar.gz
make tests green again
Diffstat (limited to 'tests/tuples')
-rw-r--r--tests/tuples/tuple_with_nil.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tuples/tuple_with_nil.nim b/tests/tuples/tuple_with_nil.nim
index 7f5a359f5..eb265f420 100644
--- a/tests/tuples/tuple_with_nil.nim
+++ b/tests/tuples/tuple_with_nil.nim
@@ -485,7 +485,7 @@ proc writeformat(o: var Writer; b: bool; fmt: Format) =
   else:
     raise newException(FormatError, "Boolean values must of one of the following types: s,b,o,x,X,d,n")
 
-proc writeformat(o: var Writer; ary: openarray[any]; fmt: Format) =
+proc writeformat(o: var Writer; ary: openarray[system.any]; fmt: Format) =
   ## Write array `ary` according to format `fmt` using output object
   ## `o` and output function `add`.
   if ary.len == 0: return
fb50bb81cea8f60716901b3a'>^
7d2c2d55 ^
ef55a414 ^

02244ae2 ^
ef55a414 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23