zig/test/behavior/bugs/12911.zig
2022-12-06 19:06:48 -07:00

10 lines
164 B
Zig

const builtin = @import("builtin");
const Item = struct { field: u8 };
const Thing = struct {
array: [1]Item,
};
test {
_ = Thing{ .array = undefined };
}