| author | |
| committer | |
| log | 21064d9144433d0ceaa7c1d902ecbb2471f0546c |
| tree | 789940faa00db6599ca6cfa1413038e812f753c2 |
| parent | 1ec50613bf2c492839fe798aeaaae789344eedf4 |
I opened a corresponding issue #12178 which has the 0.10.0 milestone, so
this must be fixed before we release.1 files changed, 6 insertions(+), 0 deletions(-)
lib/std/hash/auto_hash.zig+6| ... | ... | @@ -375,6 +375,12 @@ test "testHash struct" { |
| 375 | 375 | } |
| 376 | 376 | |
| 377 | 377 | test "testHash union" { |
| 378 | const builtin = @import("builtin"); | |
| 379 | if (builtin.zig_backend == .stage2_llvm and builtin.mode == .ReleaseSafe) { | |
| 380 | // https://github.com/ziglang/zig/issues/12178 | |
| 381 | return error.SkipZigTest; | |
| 382 | } | |
| 383 | ||
| 378 | 384 | const Foo = union(enum) { |
| 379 | 385 | A: u32, |
| 380 | 386 | B: bool, |