diff options
Diffstat (limited to 'test/behavior/type.zig')
| -rw-r--r-- | test/behavior/type.zig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/behavior/type.zig b/test/behavior/type.zig index 4aec553527..8cef86b5dd 100644 --- a/test/behavior/type.zig +++ b/test/behavior/type.zig @@ -513,6 +513,11 @@ test "Type.Fn" { if (builtin.zig_backend == .stage1) return error.SkipZigTest; if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO + if (true) { + // https://github.com/ziglang/zig/issues/12360 + return error.SkipZigTest; + } + const some_opaque = opaque {}; const some_ptr = *some_opaque; const T = fn (c_int, some_ptr) callconv(.C) void; |
