aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/bugs/12911.zig
blob: acd725fbeb94189d9a1f83c424ec518deb507671 (plain)
1
2
3
4
5
6
7
8
9
const builtin = @import("builtin");

const Item = struct { field: u8 };
const Thing = struct {
    array: [1]Item,
};
test {
    _ = Thing{ .array = undefined };
}