diff options
| author | Josh Wolfe <thejoshwolfe@gmail.com> | 2017-12-01 19:54:01 -0700 |
|---|---|---|
| committer | Josh Wolfe <thejoshwolfe@gmail.com> | 2017-12-01 19:54:01 -0700 |
| commit | 54a0db0daf8fd5ef307f275275e10f32ebd7d27a (patch) | |
| tree | 5cba74b234189fb574fd0b9b4cf375122ee9112f /std | |
| parent | 67b8b00c446634a6db5818bcb84f4207aad3948a (diff) | |
| download | zig-54a0db0daf8fd5ef307f275275e10f32ebd7d27a.tar.gz zig-54a0db0daf8fd5ef307f275275e10f32ebd7d27a.zip | |
todo: fix #639
Diffstat (limited to 'std')
| -rw-r--r-- | std/sort.zig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/std/sort.zig b/std/sort.zig index a1932c40e6..57fb0ab4c0 100644 --- a/std/sort.zig +++ b/std/sort.zig @@ -73,7 +73,8 @@ fn reverse(was: Cmp) -> Cmp { test "stable sort" { testStableSort(); - comptime testStableSort(); + // TODO: uncomment this after https://github.com/zig-lang/zig/issues/639 + //comptime testStableSort(); } fn testStableSort() { var expected = []IdAndValue { |
