mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 04:04:44 +01:00
19 lines
237 B
Zig
19 lines
237 B
Zig
const E = enum {
|
|
a,
|
|
b,
|
|
c,
|
|
};
|
|
|
|
const U = union(E) {
|
|
a: i32,
|
|
b: f64,
|
|
};
|
|
|
|
export fn entry() usize {
|
|
return @sizeOf(U);
|
|
}
|
|
|
|
// error
|
|
//
|
|
// :7:11: error: enum field 'c' missing from union
|
|
// :4:5: note: enum field here
|