This commit is contained in:
Araq
2018-03-05 13:38:32 +01:00
parent 8572085cc7
commit 15e044416f
2 changed files with 4 additions and 2 deletions

View File

@@ -30,7 +30,7 @@ proc cmpStrings(a, b: NimString): int {.inline, compilerProc.} =
if result == 0:
result = a.len - b.len
else:
result = 0
result = a.len - b.len
proc eqStrings(a, b: NimString): bool {.inline, compilerProc.} =
if a == b: return true

View File

@@ -1,12 +1,14 @@
discard """
cmd: r"nim c --hints:on $options --threads:on $file"
output: '''@["", "a", "ha", "hi", "ho", "huu"]'''
"""
import algorithm
# bug #1657
var modules = @["hi", "ho", "ha", "huu"]
var modules = @["hi", "ho", "", "a", "ha", "huu"]
sort(modules, system.cmp)
echo modules
type
MyType = object