mirror of
https://codeberg.org/ziglang/zig
synced 2026-03-16 23:21:44 +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 };
|
|
}
|