aboutsummaryrefslogtreecommitdiff
path: root/lib/std/testing.zig
diff options
context:
space:
mode:
Diffstat (limited to 'lib/std/testing.zig')
-rw-r--r--lib/std/testing.zig13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/std/testing.zig b/lib/std/testing.zig
index a0fcc8797f..d0a5eddf4e 100644
--- 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 {