zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 5ab5113077bf82237978168b32e2b549a4a71feb (tree)
parent 13ad984b1f403c240ee677c32c2b43980d098be3
Author: Benjamin Thompson <bgt37@cornell.edu>
Date:   Sat, 15 Feb 2025 12:41:58 +1000

added expectEqualDeep test coverage for issue 16625 (#22781)


Diffstat:
Mlib/std/testing.zig | 13+++++++++++++
1 file changed, 13 insertions(+), 0 deletions(-)

diff --git a/lib/std/testing.zig b/lib/std/testing.zig @@ -932,6 +932,19 @@ test "expectEqualDeep composite type" { try expectEqualDeep(a, b); try expectEqualDeep(&a, &b); } + + // inferred union + const TestStruct2 = struct { + const A = union(enum) { b: B, c: C }; + const B = struct {}; + const C = struct { a: *const A }; + }; + + const union1 = TestStruct2.A{ .b = .{} }; + try expectEqualDeep( + TestStruct2.A{ .c = .{ .a = &union1 } }, + TestStruct2.A{ .c = .{ .a = &union1 } }, + ); } fn printIndicatorLine(source: []const u8, indicator_index: usize) void {