mirror of
https://github.com/ziglang/zig.git
synced 2025-12-25 15:43:06 +00:00
10 lines
164 B
Zig
10 lines
164 B
Zig
const builtin = @import("builtin");
|
|
|
|
const Item = struct { field: u8 };
|
|
const Thing = struct {
|
|
array: [1]Item,
|
|
};
|
|
test {
|
|
_ = Thing{ .array = undefined };
|
|
}
|