mirror of
https://github.com/ziglang/zig.git
synced 2025-12-26 16:13:07 +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 };
|
|
}
|