```zig test { const S = struct { __pad: [32]u8 = @compileError("do not initiate directly"), }; var s: S = undefined; _ = s; var s2 = S{ .__pad = undefined }; _ = s2; } ```