Skip to content

Commit bae5cb3

Browse files
committed
disable failing behavior test
See #12360
1 parent bdee9ab commit bae5cb3

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

test/behavior/type.zig

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -513,6 +513,11 @@ test "Type.Fn" {
513513
if (builtin.zig_backend == .stage1) return error.SkipZigTest;
514514
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO
515515

516+
if (true) {
517+
// https://github.com/ziglang/zig/issues/12360
518+
return error.SkipZigTest;
519+
}
520+
516521
const some_opaque = opaque {};
517522
const some_ptr = *some_opaque;
518523
const T = fn (c_int, some_ptr) callconv(.C) void;

0 commit comments

Comments
 (0)