aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/bugs/12486.zig
AgeCommit message (Collapse)Author
2024-01-06categorize `behavior/bugs/<issueno>.zig` testsVeikka Tuominen
2022-12-06remove references to stage1 in behavior testsAndrew Kelley
Good riddance.
2022-08-29skip new behavior tests that do not pass for stage1Andrew Kelley
2022-08-26Sema: ensure resolveTypeFields is called for optional and error union typesmartinhath
We call `sema.resolveTypeFields` in order to get the fields of structs and unions inserted into their data structures. If it isn't called, it can happen that the fields of a type is queried before those fields are inserted into (for instance) `Module.Union.fields`, which would result in a wrong 'no field named' error. Fixes: #12486