diff --git a/test/cases/compile_errors/reify_struct.zig b/test/cases/compile_errors/reify_struct.zig index f20ea15048e65801fdbc83ceae2b79436d0fe3a3..3d11d42996d0cda9fb1fda3fe9c3a8d64dce4b92 100644 --- a/test/cases/compile_errors/reify_struct.zig +++ b/test/cases/compile_errors/reify_struct.zig @@ -74,7 +74,7 @@ comptime { // target=native // // :2:5: error: tuple cannot have non-numeric field 'foo' -// :16:5: error: tuple field 3 exceeds tuple field count +// :16:5: error: tuple field name '3' does not match field index 0 // :30:5: error: comptime field without default initialization value // :44:5: error: extern struct fields cannot be marked comptime // :58:5: error: alignment in a packed struct field must be set to 0 diff --git a/test/cases/compile_errors/reify_type_for_tagged_union_with_extra_enum_field.zig b/test/cases/compile_errors/reify_type_for_tagged_union_with_extra_enum_field.zig index 96da0752dfe1b9a0101dcf700b8e889c32c182ea..b32100ab7347cc840d54a85d27ea62821f8e934b 100644 --- a/test/cases/compile_errors/reify_type_for_tagged_union_with_extra_enum_field.zig +++ b/test/cases/compile_errors/reify_type_for_tagged_union_with_extra_enum_field.zig @@ -30,6 +30,6 @@ export fn entry() void { // backend=stage2 // target=native // -// :13:16: error: enum field(s) missing in union +// :13:16: error: enum fields missing in union // :1:13: note: field 'arst' missing, declared here // :1:13: note: enum declared here diff --git a/test/cases/compile_errors/reify_type_for_tagged_union_with_no_union_fields.zig b/test/cases/compile_errors/reify_type_for_tagged_union_with_no_union_fields.zig index 3c29083418adb3fb9374e931df4c6d4691cdc6e7..4023ebd74fbc5abe2fc1938e33824b1f653c5067 100644 --- a/test/cases/compile_errors/reify_type_for_tagged_union_with_no_union_fields.zig +++ b/test/cases/compile_errors/reify_type_for_tagged_union_with_no_union_fields.zig @@ -26,7 +26,7 @@ export fn entry() void { // backend=stage2 // target=native // -// :12:16: error: enum field(s) missing in union +// :12:16: error: enum fields missing in union // :1:13: note: field 'signed' missing, declared here // :1:13: note: field 'unsigned' missing, declared here // :1:13: note: enum declared here