mirror of
https://github.com/ziglang/zig.git
synced 2026-01-13 19:05:12 +00:00
And fix test cases to make them pass. This is in preparation for starting to pass behavior tests with self-hosted.
22 lines
333 B
Zig
22 lines
333 B
Zig
const std = @import("std");
|
|
|
|
const B = union(enum) {
|
|
D: u8,
|
|
E: u16,
|
|
};
|
|
|
|
const A = union(enum) {
|
|
B: B,
|
|
C: u8,
|
|
};
|
|
|
|
test "union that needs padding bytes inside an array" {
|
|
var as = [_]A{
|
|
A{ .B = B{ .D = 1 } },
|
|
A{ .B = B{ .D = 1 } },
|
|
};
|
|
|
|
const a = as[0].B;
|
|
std.testing.expect(a.D == 1);
|
|
}
|