mirror of
https://github.com/ziglang/zig.git
synced 2026-01-01 11:03:11 +00:00
This reverts commit 9f0359d78f9facc38418e32b0e8c1bf6f99f0d26 in an attempt to make the tests pass again. The CI failure from that merge should be unrelated to this commit.
16 lines
465 B
Zig
16 lines
465 B
Zig
const std = @import("std");
|
|
const builtin = @import("builtin");
|
|
|
|
const T = struct {
|
|
next: @TypeOf(null, @as(*const T, undefined)),
|
|
};
|
|
|
|
test {
|
|
if (builtin.zig_backend == .stage2_x86) return error.SkipZigTest; // TODO
|
|
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO
|
|
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
|
|
|
|
var t: T = .{ .next = null };
|
|
try std.testing.expect(t.next == null);
|
|
}
|