mirror of
https://github.com/ziglang/zig.git
synced 2026-01-05 13:03:25 +00:00
And fix test cases to make them pass. This is in preparation for starting to pass behavior tests with self-hosted.
8 lines
128 B
Zig
8 lines
128 B
Zig
pub const E = enum(u32) { A, B, C };
|
|
pub const S = extern struct {
|
|
e: E,
|
|
};
|
|
test "bug 1467" {
|
|
const s: S = undefined;
|
|
}
|