std: re-enable auto hash test

It was temporarily disabled due to a self-hosted compiler
miscompilation.

closes #12178
This commit is contained in:
Andrew Kelley 2022-10-29 19:18:02 -07:00
parent 209a0d2a83
commit 5339cac2ef

View File

@ -374,12 +374,6 @@ test "testHash struct" {
}
test "testHash union" {
const builtin = @import("builtin");
if (builtin.zig_backend == .stage2_llvm and builtin.mode == .ReleaseSafe) {
// https://github.com/ziglang/zig/issues/12178
return error.SkipZigTest;
}
const Foo = union(enum) {
A: u32,
B: bool,