aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/self_referential_union_requires_comptime.zig
AgeCommit message (Collapse)Author
2025-09-16test: rename backend=stage2 to backend=selfhosted, and add backend=autoAlex Rønne Petersen
backend=auto (now the default if backend is omitted) means to let the compiler pick whatever backend it wants as the default. This is important for platforms where we don't yet have a self-hosted backend, such as loongarch64. Also purge a bunch of redundant target=native.
2023-11-19test: update cases to silence 'var is never mutated' errorsmlugg
2023-09-19write function types consistently with a space before `fn` keywordr00ster91
Currently, the compiler (like @typeName) writes it `fn(...) Type` but zig fmt writes it `fn (...) Type` (notice the space after `fn`). This inconsistency is now resolved and function types are consistently written the zig fmt way. Before this there were more `fn (...) Type` occurrences than `fn(...) Type` already.
2022-08-06Sema: fix infinite recursion in `explainWhyTypeIsComptime`Anton Lilja
Co-authored-by: Veikka Tuominen <git@vexu.eu>