Commit af09d93925

Andrew Kelley <andrew@ziglang.org>
2024-03-21 23:54:40
disable failing behavior test: "bitcast packed union to integer"
see tracking issue #19384
1 parent 4dc5015
Changed files (1)
test
test/behavior/comptime_memory.zig
@@ -400,6 +400,10 @@ test "accessing reinterpreted memory of parent object" {
 }
 
 test "bitcast packed union to integer" {
+    if (true) {
+        // https://github.com/ziglang/zig/issues/19384
+        return error.SkipZigTest;
+    }
     const U = packed union {
         x: u1,
         y: u2,