aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/bugs/12885.zig
AgeCommit message (Collapse)Author
2024-01-06categorize `behavior/bugs/<issueno>.zig` testsVeikka Tuominen
2022-12-17std.builtin: rename Type.Fn's args to paramsr00ster91
This was a poor naming choice; these are parameters, not arguments. Parameters specify what kind of arguments are expected, whereas the arguments are the actual values passed.
2022-12-17std.builtin: rename Type.Fn.Param's arg_type to typer00ster91
It's the type of a parameter, not an argument, but the prefix is redundant either way.
2022-12-06remove references to stage1 in behavior testsAndrew Kelley
Good riddance.
2022-09-24Sema: avoid using `pointerDecl` when dealing with slicesVeikka Tuominen
Closes #12885