We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86292b2 commit dc29145Copy full SHA for dc29145
test/behavior/cast.zig
@@ -1431,6 +1431,11 @@ test "coerce between pointers of compatible differently-named floats" {
1431
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
1432
if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO
1433
1434
+ if (builtin.os.tag == .windows) {
1435
+ // https://github.com/ziglang/zig/issues/12396
1436
+ return error.SkipZigTest;
1437
+ }
1438
+
1439
const F = switch (@typeInfo(c_longdouble).Float.bits) {
1440
16 => f16,
1441
32 => f32,
0 commit comments