std: Re-enable union behaviour test for mips targets

This commit is contained in:
LemonBoy 2020-11-02 11:46:26 +01:00
parent 307496fcd7
commit 4fd1ec78e9

View File

@ -623,9 +623,6 @@ test "0-sized extern union definition" {
}
test "union initializer generates padding only if needed" {
// https://github.com/ziglang/zig/issues/5127
if (std.Target.current.cpu.arch == .mips) return error.SkipZigTest;
const U = union(enum) {
A: u24,
};