aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/reify_struct.zig
AgeCommit message (Collapse)Author
2024-08-28std: update `std.builtin.Type` fields to follow naming conventionsmlugg
The compiler actually doesn't need any functional changes for this: Sema does reification based on the tag indices of `std.builtin.Type` already! So, no zig1.wasm update is necessary. This change is necessary to disallow name clashes between fields and decls on a type, which is a prerequisite of #9938.
2024-03-11std.builtin: make container layout fields lowercaseTristan Ross
2024-03-06cases: correct after #18816mlugg
I changed an error messages and fixed a minor bug while implementing this proposal, which led to a few compile error cases failing.
2023-07-25frontend: forbid packed and extern tuplesAndrew Kelley
2022-12-17std.builtin: rename Type.UnionField and Type.StructField's field_type to typer00ster91
2022-11-23add tests for tuple declarationsVeikka Tuominen