aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/bugs/1467.zig
blob: e062e66c8d99e3e17ea31405caf9db3ecfad83f6 (plain)
1
2
3
4
5
6
7
8
pub const E = enum(u32) { A, B, C };
pub const S = extern struct {
    e: E,
};
test "bug 1467" {
    const s: S = undefined;
    _ = s;
}