| author | |
| committer | |
| log | 54a0db0daf8fd5ef307f275275e10f32ebd7d27a |
| tree | 5cba74b234189fb574fd0b9b4cf375122ee9112f |
| parent | 67b8b00c446634a6db5818bcb84f4207aad3948a |
1 files changed, 2 insertions(+), 1 deletions(-)
std/sort.zig+2-1| ... | @@ -73,7 +73,8 @@ fn reverse(was: Cmp) -> Cmp { | ... | @@ -73,7 +73,8 @@ fn reverse(was: Cmp) -> Cmp { |
| 73 | 73 | ||
| 74 | test "stable sort" { | 74 | test "stable sort" { |
| 75 | testStableSort(); | 75 | testStableSort(); |
| 76 | comptime testStableSort(); | 76 | // TODO: uncomment this after https://github.com/zig-lang/zig/issues/639 |
| 77 | //comptime testStableSort(); | ||
| 77 | } | 78 | } |
| 78 | fn testStableSort() { | 79 | fn testStableSort() { |
| 79 | var expected = []IdAndValue { | 80 | var expected = []IdAndValue { |