From b074299124e1403d48d9904c6ab855b7c72df9e0 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Fri, 5 Sep 2025 19:45:07 -0700 Subject: [PATCH] std: update for new packed union rules --- lib/std/meta.zig | 7 ------- 1 file changed, 7 deletions(-) diff --git a/lib/std/meta.zig b/lib/std/meta.zig index 65b7d60c18..019b0e3910 100644 --- a/lib/std/meta.zig +++ b/lib/std/meta.zig @@ -1193,13 +1193,6 @@ test hasUniqueRepresentation { try testing.expect(hasUniqueRepresentation(TestStruct6)); - const TestUnion1 = packed union { - a: u32, - b: u16, - }; - - try testing.expect(!hasUniqueRepresentation(TestUnion1)); - const TestUnion2 = extern union { a: u32, b: u16,