diff options
Diffstat (limited to 'tests/accept')
-rw-r--r-- | tests/accept/compile/tsortdev.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/accept/compile/tsortdev.nim b/tests/accept/compile/tsortdev.nim index 488836cc7..1246d7581 100644 --- a/tests/accept/compile/tsortdev.nim +++ b/tests/accept/compile/tsortdev.nim @@ -50,7 +50,7 @@ when isMainModule: for j in 0 .. L-1: data[j] = (math.random(90) - 10) var copy = data - sort(data, cmp[int, int], order) + sort(data, cmp[int], order) if not sorted(data, order): #for x in items(data): echo x break |